Forum Discussion
Numeric Range Parameters
- 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.
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.
Anonymous , Ashish_Mathur
Apologies for the delayed response. I got dragged into another project.
Thank you both for providing the solution. Ashish, Driver Wait is actually a column in my Fact Table so I simply went with Yolo's solution. But understand both solutions are driving at the same thing and now understand the logic.
Kind Regards to you both,