Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
='Sales : ' & Num(Sum(Sales), '#,##0')
Hi Manoj,
='Sales : ' & Num(Sum(Sales), '#,##0')
Sales with in ' ' will come as a text in out put
Num function will make sure the sum(sales) will in '#,##0' format. eg. 2,330
Regards
KC
What is your actual requirement?
Do you need this:
Text (Sales : ) + Sum(sales) in format '#,##0'
Hi,
Is this same question mention in this thread
Num() is formated your output of Sum(Sales) in Integer format
and Sales is text appended using & special character.
& work as concat two fields.
Regards
Hi Manoj,
='Sales : ' & Num(Sum(Sales), '#,##0')
Sales with in ' ' will come as a text in out put
Num function will make sure the sum(sales) will in '#,##0' format. eg. 2,330
Regards
KC