Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have report above, if filter only 1 month the value is correct, but if filter for multiple month the value for percentage should be average not sum, so how the DAX formula to solve my problem?
Solved! Go to Solution.
Hi I got the solution and solved my problem 😁
AVG SUM =
CALCULATE(
if(
SELECTEDVALUE(KPI1[UoM])="%",
AVERAGE(KPI1[Value]),
SUM(KPI1[Value])
),
KEEPFILTERS(KPI1)
)
Hi I got the solution and solved my problem 😁
AVG SUM =
CALCULATE(
if(
SELECTEDVALUE(KPI1[UoM])="%",
AVERAGE(KPI1[Value]),
SUM(KPI1[Value])
),
KEEPFILTERS(KPI1)
)
This is my table for your reference, guys. Really needs your help
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
8 |