Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I am using below expression using Num fucntion. For large values the values are shown below. How do i resolve this?
=Num(Expression,'$###,###')
Use below given Number format:
=Num(Expression, '$###,##0')
Regards!
Rahul Pawar
Use below given Number format:
=Num(Expression, '$###,##0')
Regards!
Rahul Pawar
Thanks Rahul, what is the significance of the change and the break down of num function?
Hello Surya,
0 : Digit that has to be shown (can be used for padding 0's)
# : Digit is showed only if it's necessary
e.g.
Num(123, '0000') will show 0123
Num(123, '####') will show 123
Regards!
Rahul Pawar