Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
Hi,
Input box is only for accepting input from the user.
thanks,
Rajesh Vaswani
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
Hi tresesco,
I got it thank u:)