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 a set of measures like Average Satisfaction, average Score, etc. which I want to map in a table. Column values are the different periods for these measures. I also want to add another column that shows % Changes in these measures.
Table below for example. (% Change = (Period2 - Period1)/Period 1
Parameters Period1 Period2 %Change
Param1 30 40 33%
Param2 78% 87% 12%
Param3 4.67 7.2 54%
I am not sure how to work out this table. Thank you for your help
Solved! Go to Solution.
Hi @RishabhS ,
Suppose we have a table like this.
then please new these measures:
Period1 =
SWITCH(
MAX('Table'[Parameters]),
"Param1",[Period1 Average Score],
"Param2",[Period1 Average Satisfaction],
"Param3",[Period1 Average Score]
)
Period2 =
SWITCH(
MAX('Table'[Parameters]),
"Param1",[Period2 Average Score],
"Param2",[Period2 Average Satisfaction],
"Param3",[Period2 Average Score]
)
%Change = DIVIDE([Period2]-[Period1],[Period1])
result:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @RishabhS ,
Suppose we have a table like this.
then please new these measures:
Period1 =
SWITCH(
MAX('Table'[Parameters]),
"Param1",[Period1 Average Score],
"Param2",[Period1 Average Satisfaction],
"Param3",[Period1 Average Score]
)
Period2 =
SWITCH(
MAX('Table'[Parameters]),
"Param1",[Period2 Average Score],
"Param2",[Period2 Average Satisfaction],
"Param3",[Period2 Average Score]
)
%Change = DIVIDE([Period2]-[Period1],[Period1])
result:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @RishabhS
Can you create one sample pbix file and share in Google Drive (any one can access the file), it will help
Also share the expected result screenshot based on your pbix file
Thanks
Proud to be a Super User! | |
I am working on office systems. Can't share any files. IS there any other way I can help you recreate this scenario?
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 |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
82 | |
67 | |
61 | |
46 | |
45 |