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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

expression problem

hi i have an expression-

='v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID)

the result is - v_for_24_4

v_for_24_4 is a variable

$(v_for_24_4) = 1.29


i need a text box with somthing like

=$(   'v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID)   )

that will give me the result = 1.29

what syntax shoul i use?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

=$( $(= 'v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID) ) )

or

= $(= 'v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID) )

View solution in original post

2 Replies
swuehl
MVP
MVP

Try

=$( $(= 'v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID) ) )

or

= $(= 'v_for_'&MaxString({<Metric_display_no={1}>}Metric_ID) )

adiarnon
Creator III
Creator III
Author

#1 is working!!!

tnx