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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Bratone
Helper I
Helper I

Values depending on date comparison

Hello,

 

I have a situation where depending on the date, I need to take into account one value or another. More pricesely, when rating a person, if the date is > than his promotion date I need to take into account let's say criteria 1, if not, criteria 2, and in the end, when looking at an yearly report, I will need to see the average of both criterias.

 

I have the following formulas:

Criteria 1 = IF(max(Calendar[Date])>[Promo_date],BLANK(),AVERAGE(Score1[Attempt Score1]))

Criteria 2 = IF(MAX(Calendar[Date])>[Promo_date],CALCULATE(average(Score2[Attempt score2]),,BLANK())

Measure = IF(MAX(Calendar[Date])<[Promo_date],[Criteria 1,[Criteria 2]))

Bratone_0-1672923275268.png

The measure on a month-to-month logic seems to be working, but as you can see above, the yearly average is wrong, and I think it takes into account only the scenario when the condition is met for criteria 2.

 

The displayed average is 0.17 just like the value for December, and for this example, the promo date is indeed 1st of December, so it only took into account the values from 1st of December onwards.

 

Any idea how can I make it to also display correctly the yearly average ?

 

Thank you!

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Bratone , Try like

 

Averagex(values(Date[Month Year]), calculate(IF(MAX(Calendar[Date])<[Promo_date],[Criteria 1,[Criteria 2])) )

 

 

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Bratone , Try like

 

Averagex(values(Date[Month Year]), calculate(IF(MAX(Calendar[Date])<[Promo_date],[Criteria 1,[Criteria 2])) )

 

 

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you so much for your fast answer, is working as it should now:

 

Bratone_0-1672924759795.png

 

Helpful resources

Announcements
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.

May 2025 Monthly Update

Fabric Community Update - May 2025

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