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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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!