Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I am trying to make a Power BI report with a matrix that shows monthly and weekly revenue totals for the year. The month names and week numbers are the rows whereas the columns are "revenue measure", and "percent of $20,000". I currently want to add a column that shows weekly revenue as a percent of monthly revenue where each month would show as being 100% and the weeks in the month would make up that total. If someone could please let me know what measure I could add to make this possible, it would be highly appreciated! Thank you!
Solved! Go to Solution.
To create a measure that shows weekly revenue as a percentage of the monthly revenue, you can follow these steps:
1. Create a measure for monthly revenue:
Monthly Revenue = CALCULATE([revenue measure], ALLEXCEPT(YourTable, YourTable[MonthName]))
Replace 'YourTable' with the actual name of your table and 'MonthName' with the column that contains the month names.
2. Create a measure for weekly revenue as a percentage of monthly revenue:
Weekly Revenue % of Monthly = DIVIDE([revenue measure], [Monthly Revenue], 0)
3. Format the measure as a percentage. Then add it to your matrix visual.
If you encounter any issues or have further questions, feel free to ask for more assistance.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
To create a measure that shows weekly revenue as a percentage of the monthly revenue, you can follow these steps:
1. Create a measure for monthly revenue:
Monthly Revenue = CALCULATE([revenue measure], ALLEXCEPT(YourTable, YourTable[MonthName]))
Replace 'YourTable' with the actual name of your table and 'MonthName' with the column that contains the month names.
2. Create a measure for weekly revenue as a percentage of monthly revenue:
Weekly Revenue % of Monthly = DIVIDE([revenue measure], [Monthly Revenue], 0)
3. Format the measure as a percentage. Then add it to your matrix visual.
If you encounter any issues or have further questions, feel free to ask for more assistance.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
89 | |
82 | |
53 | |
40 | |
35 |