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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
souvik900766
Helper IV
Helper IV

Return data from specified time interval in all rows in a calculated column

 

Hi !

My Data:-

YearMonth CY2018
2019     Jan,19        784003.6     
2020Jan,20796923 
2021Jan,21912686.3 
2018Jan,18754578.3 

I want to return year 2018 CY Value i.e. 754578 in 2018 Column in all rows.
The calculation should be based on latest month for e.g.
MAX(Month),dateadd(month,-3,year)
So, here I want to find from Jan, 2021, to 3 years prior data.
I tried with this three but not working..
Capture 1.PNGCapture 2.PNGCapture.PNG

Thanks in advance !

2 REPLIES 2
amitchandak
Super User
Super User

@souvik900766 , Try like given examples

 

Example

sumx(filter(Table, Table[year] = 2018 ), [CY])

 

sumx(filter(Table, Table[year] = 2018 && [Month] = "Jan, 18" ), [CY])

 

if you can only month name like Jan, feb or 01, 02 etc

 

sumx(filter(Table, Table[year] = 2018 && [Month] = earlier([Month] )  ), [CY])

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi  @amitchandak 
Its not working...
NW1.PNGNW2.PNGNW3.PNG

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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