Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
marksmunich
Creator III
Creator III

adding text and formula in text object

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

1 Solution

Accepted Solutions
Not applicable

try this


='Number of cities =  '  & count(cities) &  chr(10) & 'Number of states=  ' & count(states)

View solution in original post

5 Replies
marksmunich
Creator III
Creator III
Author

found answer.

sujeetsingh
Master III
Master III

=sum(Fact1)  & Sum(Fact2) &'Text Message '

try this

Not applicable

=count(cities) &  chr(10) & count(states)

marksmunich
Creator III
Creator III
Author

for one expression its working, how can i calculate for 2 expressions in sam text object

Not applicable

try this


='Number of cities =  '  & count(cities) &  chr(10) & 'Number of states=  ' & count(states)