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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello PowerBi Community
I have a table of this kind :
Factory | Date | Result | Limit |
A | 01/01/2020 | 1.38 | 1.5 |
B | 01/01/2020 | 1.75 | 1.5 |
A | 01/02/2020 | 1.85 | 1.7 |
B | 01/02/2020 | 1.52 | 1.7 |
I have a what if parameter to change the value of the limits. (By multiplicate the limits by the parameter)
Then i have an another measure to calculate if the factory result is over the new limit :
I want to count the number of sites that are over the limit
And now this is my problem i want to sum the Measure3 to know how many factory are over the limit.
And use it in a graph with the date in x axis.
Thank you for your help 🙂
Solved! Go to Solution.
@Anonymous , try like
sumx(summarize(Table,Table[factory], "_1",[Measure3]),[_1])
sumx(filter(summarize(Table,Table[factory], "_1",[Measure3]),[_1]=1),[_1])
or
sumx(filter(summarize(Table,Table[factory], "_1",[Measure3]),[_1]=0),[_1])
@Anonymous , try like
sumx(summarize(Table,Table[factory], "_1",[Measure3]),[_1])
sumx(filter(summarize(Table,Table[factory], "_1",[Measure3]),[_1]=1),[_1])
or
sumx(filter(summarize(Table,Table[factory], "_1",[Measure3]),[_1]=0),[_1])
This one perfectly works for me :
sumx(filter(summarize(Table,Table[factory], "_1",[Measure3]),[_1]=1),[_1])
Thank you !
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.