Hi everyone ,
Is there any way to move the total column, so that instead of being on the right, it is on the left?
I can't find any information
Thanks
Solved! Go to Solution.
Hi,
I tried to create a sample pbix file to demonstrate what is an alternative way.
Please check the below picture and the attached pbix file.
I am not sure how your datamodel looks like, but I hope the below can provide some ideas on how to create a solution for your datamodel.
Sales total measure: =
IF (
SELECTEDVALUE ( Country[Country] ) = "Total",
CALCULATE ( SUM ( Data[Sales] ), ALL ( Country ) ),
SUM ( Data[Sales] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
I tried to create a sample pbix file to demonstrate what is an alternative way.
Please check the below picture and the attached pbix file.
I am not sure how your datamodel looks like, but I hope the below can provide some ideas on how to create a solution for your datamodel.
Sales total measure: =
IF (
SELECTEDVALUE ( Country[Country] ) = "Total",
CALCULATE ( SUM ( Data[Sales] ), ALL ( Country ) ),
SUM ( Data[Sales] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thanks works perectly!
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
216 | |
54 | |
46 | |
43 | |
41 |
User | Count |
---|---|
277 | |
210 | |
73 | |
73 | |
65 |