Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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,
I have a matrix with "fg year and month rows" and "received date" in the column.
the matrix shows the count of fg in each received month. I want to add a % for each value using the fg total row (row level value divided by fg total value.
Example data like below.
Oct 2021 rows and Oct 2021 column the % should be 100%(4622/fg total 6422)
Nov 2021 row and Oct 2021 column the % should be 59.04%(4652/fg total 7883), Nov 2021 column 40.96%(3229/7883)
and so on...
Trying out this code and gives me wrong % value.
Appreciate any help.
Kindest regards
Solved! Go to Solution.
Hi @Anonymous , already resolved the issue. Please see below the code. btw, thanks for the reply.
% of total =
Hi @JWick1969 ,
What is the [DateFG] in the formula?
As I can see from the screenshot, the row total should be:
CALCULATE (
SUM ( 'table'[FG Count] ),
FILTER (
ALL ( 'table' ),
'table'[year] = SELECTEDVALUE ( 'table'[year] )
&& 'table'[month] = SELECTEDVALUE ( 'table'[month] )
)
)
Best Regards,
Jay
Hi @Anonymous , already resolved the issue. Please see below the code. btw, thanks for the reply.
% of total =
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |