Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i want to add text and 2 formulas which display the calcualted value in 2 rows in a text object
for ex: no of cities: 3456
no of states: 345
back bround in the text object will be like = count(cities)
but how to make it work for both text and 2 formulas in the same text object
T&R
Mark
try this
='Number of cities = ' & count(cities) & chr(10) & 'Number of states= ' & count(states)
found answer.
=sum(Fact1) & Sum(Fact2) &'Text Message '
try this
=count(cities) & chr(10) & count(states)
for one expression its working, how can i calculate for 2 expressions in sam text object
try this
='Number of cities = ' & count(cities) & chr(10) & 'Number of states= ' & count(states)