Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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!