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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
sbrazeau
Frequent Visitor

Comparing current year to previous when there is no data this year

Hello.

 

I am building a set of reports for the company I work for.  Almost done, I realize there is a problem.  I need to compare incidents and accidents between either years or periods.  Everything seemed to work fine, until I realised I am missing data once in a while.  To make an easy example, my tables would look like this:

 

yearstype of accident
2019A
2019A
2019B
2019C
2018B
2018B
2018C
2018C
2017A
2017C
2017C

 

My reports let you select a year and it will show a table with the count of accidents for the selected year and the priopr year (SAMEPERIODLASTYEAR). So if I select 2019, I get:

yearsABC
2019211
2018022

 

If I select 2018, this is where I get the problem.  Since there is no "A" in 2018, "A" does not get evaluated and the returned table is:

yearsBC
201822
201702

 

instead of:

yearsABC
2018021
2017102

 

Is there a function that would force the table to consider all values of the SAMEPERIODLASTYEAR and not only the current year?

 

Thanks!

2 REPLIES 2
MauriceMecowe
Resolver II
Resolver II

Hi sbrazeau,

 

Maybe the ISBLANK() function is what you're looking for. Or you can build out a query where with a filter clause. It will look something like:

 

[Comparison over time] :=
CALCULATE(
	[Value],
	FILTER(
		ALL('Date'),
		CONTAINS(
			VALUES, ('Date'[Date])
			'Date'[Date],
			'Date'[Date]
			)
		)
	)
 

Unfortunately, I don't think the ISBLANK() would do the trick since there is no blank entry in the table.  The problem is really that if my COUNTA=0 this year, the report does not care about last year.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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