The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!