Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have to change the chart display depending on user selection if the user wants to view median or average from input box.
How to write the expression in chart display - if Median selected then expression will be Median([Measure_LOS]) or when Average selected expression will be Average([Measure_LOS]) ?
I used variable in dimension : vLOSDisplay
In script :
set vLOSDisplayList='Median,Average';
set vLOSDisplay='Median';
Regards
the simplest way is to define both expressions. Use the conditional property on each expression as
'$(vLOSDisplay)' = 'Median'
'$(vLOSDisplay)' = 'Average'
-Rob