Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Input Box

I have expression like Max(cost,2) ,2 is a rank value instead of displaying the rank value in expression i want to display it in a Input box separately.

can anyone help me to get like that?????????

Thanks in advance

Janardanan.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Probably you meant to accept input from user to get the rank for max(). If so, you can take input from user in the unput box and capture that in a variable, then use that variable in the max(), like:

Max(cost, vInputRank)

PFA

View solution in original post

3 Replies
rajeshvaswani77
Specialist III
Specialist III

Hi,

Input box is only for accepting input from the user.

thanks,

Rajesh Vaswani

tresesco
MVP
MVP

Probably you meant to accept input from user to get the rank for max(). If so, you can take input from user in the unput box and capture that in a variable, then use that variable in the max(), like:

Max(cost, vInputRank)

PFA

Not applicable
Author

Hi tresesco,

I got it thank u:)