K
Kate
Hi, I am displaying columns of data that are based upon numeric data,
using a custom number formats based upon the size of the number.
However, the field will display text if it is empty. See field
calculation below.
=IIf(IsNull([kg/j]),"NA",Format([kg/j],Switch([kg/j]>=100,"#,###,##0",
[kg/j]>=10,"#0.0",[kg/j]>=0.1,"0.0#",[kg/j]>=0.01,"0.00#",[kg/j]>=0.001,"0.000#",
[kg/j]>0.0001,"0.0000#",[kg/j]<0.0001,"Scientific")))
My problem is that I would like to align the columns by decimal,
rather than simply right, left, or center. Is there any way this is
possible???
Thank you,
Kate
using a custom number formats based upon the size of the number.
However, the field will display text if it is empty. See field
calculation below.
=IIf(IsNull([kg/j]),"NA",Format([kg/j],Switch([kg/j]>=100,"#,###,##0",
[kg/j]>=10,"#0.0",[kg/j]>=0.1,"0.0#",[kg/j]>=0.01,"0.00#",[kg/j]>=0.001,"0.000#",
[kg/j]>0.0001,"0.0000#",[kg/j]<0.0001,"Scientific")))
My problem is that I would like to align the columns by decimal,
rather than simply right, left, or center. Is there any way this is
possible???
Thank you,
Kate