Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a Text Box, containing sum(Sales) in expression.
Now I want to show this with comma in numbers. As there is no option for number. I am not able to select any property.
Please help.
Thanks,
Sarif
Use Num() function
Num(Sum(Sales), '#,##0')
Hi,
You should specify number format in terms of Expression like num(expression,'number format expression').
It will give you the number separated by comma's.
EX:
num(sum(Sales),'#,##0')
Hi,
When you use Num() function, first parameter is the expression, second the mask, third the decimal separator and fourth the thousand separator.
Regards,
H