Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
FOXYBARK
Helper III
Helper III

How to hide or remove first value in YOY% change matrix

HI. 

 

I have the following calculation - 

% Change YOY = CALCULATE(DIVIDE(SUM(Dodeca_Financials[YTD]), [LY]) -1)
which works accurately. I also have a simple viz to display my results. 
FOXYBARK_0-1747248682284.png

 

 

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. 

 

FOXYBARK_1-1747248849789.png

 

Thanks


 

1 ACCEPTED SOLUTION
maruthisp
Super User
Super User

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 

LinkedIn - http://www.linkedin.com/in/maruthi-siva-prasad/ 

X            -  Maruthi Siva Prasad - (@MaruthiSP) / X

View solution in original post

2 REPLIES 2
maruthisp
Super User
Super User

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 

LinkedIn - http://www.linkedin.com/in/maruthi-siva-prasad/ 

X            -  Maruthi Siva Prasad - (@MaruthiSP) / X

gmsamborn
Super User
Super User

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.



Proud to be a Super User!

daxformatter.com makes life EASIER!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.