Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have an expression which might deliver a financial value which I'd like to display as '£##0' OR a percentage value, I'd like to display in the format '##%'.
Can I do this with expression attributes ?
Thanks
tresesco idea is what I would do also. However, maybe slightly more efficient (esp if <exp> is complex) would be:
Num(<Exp>, If( <YourCondition>, '##%', '£##0' ) )
-Rob
What do you mean when you say Expression attributes?
Try like:
If( <YourCondition>, Num(<Exp>, '##%'), Num(<Exp>, '£##0' ) )
tresesco idea is what I would do also. However, maybe slightly more efficient (esp if <exp> is complex) would be:
Num(<Exp>, If( <YourCondition>, '##%', '£##0' ) )
-Rob