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.
Hi Community!
I have client survey data and have calculated a % change over ~90 days, from Survey 1 to Survey 3 -- my DAX below:
[Change Rate] =
var ClientsWithBothSurveys =
FILTER(
DISTINCT( T[ClientNum] ),
// Based on the info you've given,
// the client can have either 1
// or 2 surveys. You want only
// the clients with 2 surveys.
CALCULATE(
DISTINCTCOUNT( T[Survey] ) = 2
)
)
var AvgRating1 =
CALCULATE(
AVERAGE( T[Rating] ),
ClientsWithBothSurveys,
KEEPFILTERS(
T[Survey] = 1
)
)
var AvgRating3 =
CALCULATE(
AVERAGE( T[Rating] ),
ClientsWithBothSurveys,
KEEPFILTERS(
T[Survey] = 3
)
)
var Result =
DIVIDE(
AvgRating3 - AvgRating1,
AvgRating1
)
return
Result
However, having a model with just one table is one where you're gonna face issues, even if your formulas are perfectly correct.
Watch this as a warning: https://www.youtube.com/watch?v=aRntX-HiiN8&t=270s
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 |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |