Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
Solved! Go to Solution.
@icdns
Can you this measure:
My formula: FINAL YTD =
DIVIDE(
[YTD%],
MAX(DIM_DATE[Month_No])
)
________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@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
@icdns
Can you this measure:
My formula: FINAL YTD =
DIVIDE(
[YTD%],
MAX(DIM_DATE[Month_No])
)
________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group