Forum Discussion
rsbin
2 years agoCommunity Champion
Numeric Range Parameters
Hello Folks,
Using Parameters for the first time and struggling with some logic:
I have a simple Numeric Range Parameter which represents "Driver Wait Time (s)" - from 0 - 180 incremented by 1. ...
- Anonymous2 years ago
Hi rsbin
Based on your description, you can refer to the following solution.
Sampple data
The paramater table is the same as you privided.
Create a measure.
MEASURE = CALCULATE ( SUM ( 'Table'[Overall Driver Wait] ), 'Table'[Overall Driver Wait] > SELECTEDVALUE ( 'QueueTimeThreshold(sec)'[Parameter] ) ) )Then put the measure to the visual.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
2 years agoSuper User
Hi,
Assuming overall driver wait is a measure that you have written, write this measure and filter with the criteria of TRUE
Test = [Overall driver wait]>[Parameter value]
Hope this helps.