I have an expression along the lines of:
Code: Select all
{
(sum(a)
/
((x+y+x)/
((x==0?0:1)+(y==0?0:1)+(z==0?0:1))
)
)
}
I know I can use the expression below instead, but why does the TextFormat option not display this to 2 Decimal Digits?
Code: Select all
{Format("{0:N2}",
(sum(a)
/
((x+y+x)/
((x==0?0:1)+(y==0?0:1)+(z==0?0:1))
)
)
)}
Rick.