Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If anyone knows if this is possible, I would appreciate your help.
I have a list box which looks like this
StepNumber, StepName, Qty
1,Name1,5
2,Name2,3
3,Name3,7
etc
And I have create a seperate gauge for each step using
=count ({$<StepNumber={1}>} DocumentStatus)
=count ({$<StepNumber={2}>} DocumentStatus)
=count ({$<StepNumber={3}>} DocumentStatus)
etc
as my expression definition.
I would like to to set the window title to be the Step Name, however
StepName only works if you select the line in the list box, and
=({$<StepNumber={1}>} StepName) is not correct either.
Anyone know if this is possible?
Hi,
Try below statement in windows title
=max({<StepNumber= {"1"}>}StepName)
Regards,
Kaushik Solanki