Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi !
My Data:-
| Year | Month | CY | 2018 | 
| 2019 | Jan,19 | 784003.6 | |
| 2020 | Jan,20 | 796923 | |
| 2021 | Jan,21 | 912686.3 | |
| 2018 | Jan,18 | 754578.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..
Thanks in advance !
@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])
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |