Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
HI.
I have the following calculation -
I'm looking for a way to hide the first change and have it be dynamic based on my property filter selection. Filter is not shown for security. I'm okay if it says "N/A" or something like that also.
Thanks
Solved! Go to Solution.
Hi FOXYBARK ,
As per my understanding, You can solve this with a small tweak to your YoY% measure so that it only shows a value when there is a  last year to compare and otherwise returns blank or N/A.
I tried to put your solution in the attached pbix file, please check and let me know if you have questions further.
How to hide or remove first value in YOY% change matrix.pbix
If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too. And if you found it useful, a quick "Kudos" is always appreciated — thanks!
Best Regards,
Maruthi
Hi FOXYBARK ,
As per my understanding, You can solve this with a small tweak to your YoY% measure so that it only shows a value when there is a  last year to compare and otherwise returns blank or N/A.
I tried to put your solution in the attached pbix file, please check and let me know if you have questions further.
How to hide or remove first value in YOY% change matrix.pbix
If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too. And if you found it useful, a quick "Kudos" is always appreciated — thanks!
Best Regards,
Maruthi
Hi @FOXYBARK 
would a measure like this help?
% Change YOY =
IF(
	[LY],
    DIVIDE(
        SUM( Dodeca_Financials[YTD] ),
        [LY]
    ) - 1
)
Let me know if you have any questions.
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |