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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
rathnam_qv
Creator
Creator

Flow chart

Hi All,

i have create a flow chart as in attached image.

but i want to call the values in the table(Display Values, see the image) into the Text Object.

can anyone help me out.

Regards,

Rathnam.

1 Solution

Accepted Solutions
manideep78
Partner - Specialist
Partner - Specialist

If that Chart is Static(If Display Label is static) you can do it using Set Analysis in each and every text object.

Write Below expressions in all the text objects that you need.

Booked:

Sum({<[Display Label]={'Booked'}>}[Display Value])

Billed:

Sum({<[Display Label]={'Billed'}>}[Display Value])

and so on.

Hope this helps.

Regards,

Manideep

View solution in original post

3 Replies
manideep78
Partner - Specialist
Partner - Specialist

If that Chart is Static(If Display Label is static) you can do it using Set Analysis in each and every text object.

Write Below expressions in all the text objects that you need.

Booked:

Sum({<[Display Label]={'Booked'}>}[Display Value])

Billed:

Sum({<[Display Label]={'Billed'}>}[Display Value])

and so on.

Hope this helps.

Regards,

Manideep

rathnam_qv
Creator
Creator
Author

Hi Manideep,

thanks for ur reply.

but i want to change my value format as $1,500,000

how to do that.

Regards,

Rathnam.

manideep78
Partner - Specialist
Partner - Specialist

Try this in the Text Object for every expression:

='$ '&Num(Sum({<[Display Label]={'Booked'}>}[Display Value]),'#,###.##')


Hope this helps you.


Regards

Manideep