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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

p.p. change - Exclude where no data for current year

Hi All, 

 

I have a test PBI file where I am encountering an issue I cant quite solve. I am calculating the p.p. difference between scores across two  years and want to exclude any record for which there is no data for the most recent year (filtered).

 

The formula I am using is below, I need to exclude any record where there is no record for Year_New

 

Score p.p. YoY% = 
IF(
	ISFILTERED('TestData'[Year_New]),
	ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
	VAR __PREV_YEAR =
		CALCULATE(
			[Calc],
			DATEADD('TestData'[Year_New].[Date], -1, YEAR)
		)
	RETURN
			[Calc] - __PREV_YEAR
)

pbix file link below

1 ACCEPTED SOLUTION

Hi @Anonymous 

You may add IF conditon like below:

Score p.p. YoY% =
IF (
ISFILTERED ( 'TestData'[Year_New] ),
ERROR ( "Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column." ),
VAR __PREV_YEAR =
CALCULATE ( [Calc], DATEADD ( 'TestData'[Year_New].[Date], -1, YEAR ) )
RETURN
IF ( [Calc] <> BLANK (), [Calc] - __PREV_YEAR )
)

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Link to pbix on dropbox (select the download button)

 

Test pbix file

Hi @Anonymous 

You may add IF conditon like below:

Score p.p. YoY% =
IF (
ISFILTERED ( 'TestData'[Year_New] ),
ERROR ( "Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column." ),
VAR __PREV_YEAR =
CALCULATE ( [Calc], DATEADD ( 'TestData'[Year_New].[Date], -1, YEAR ) )
RETURN
IF ( [Calc] <> BLANK (), [Calc] - __PREV_YEAR )
)

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-cherch-msft 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.