Forum Discussion
Divide Monthly % by Month Number
Hello,
Need your help in creating a measure/column that computes the YTD%.
The formula of YTD% is Total Monthly Percentage / Filtered Month.
For example:
Service: Balance Inquiry
Month filtered: April 2020
(January 2020 = 97.44) + (February 2020 = 97.58) + (March= 100.00) + (April 2020 = 99.56) / Month Selected (April 2020 = 4)
YTD % = 98.65%
But I am encountering an error with my YTD% formula when putting it as a line in my combination chart. Since my column series is my Month. Below are my formula and error encountered:
My formula: FINAL YTD = CALCULATE( [YTD%] / DIM_DATE[Month_No])
Error:
Thank you.
2 Replies
- Fowmy
Super User
- amitchandak
Super User
icdns , you can try
divide( [YTD%] ,distinctcount( DIM_DATE[Month_No]) ) //Better take month year -- Safe id one month is missing
divide( [YTD%] ,Max( DIM_DATE[Month_No]) )
Power BI — YTD
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
Power BI — QTD
https://medium.com/@amitchandak.1978/power-bi-qtd-questions-time-intelligence-2-5-d842063da839
Power BI — MTD
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e