Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi their. i need help with labeling my text box formula to read as "Total Population = 50586757" without using two seperate text boxes. but i don't know the procedure to connecting the two."Total Population=count()
Hi,
It is:
='Total = ' & sum( population)
The part sum (population) will depend on your data model and field name (it could be count(id), for example)
You may even format the number part:
='total ' & num( 10000, '#,##0', '.',',')
Where '#,##0' is the mark of your number format
Hope this helps,
Erich
Erich Thanks it Worked.