Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I would like to calculate the amount of time (my x value) is grater than a specified constant line Y value.
Any ideas would be greatly appreciated.
Solved! Go to Solution.
@Bebo , Assume you have measure M1 and constant line Measure
Say M2 =10 //just any number
Assume column on x axis is col
Try a new measure
sumx(Values(Table[Col]), If([M1] >[M2], [M1], Blank())
@Bebo , Assume you have measure M1 and constant line Measure
Say M2 =10 //just any number
Assume column on x axis is col
Try a new measure
sumx(Values(Table[Col]), If([M1] >[M2], [M1], Blank())
Thank you!