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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
JohannesM
Helper I
Helper I

Can´t get the IF-statement to do what i want

Hi,

 

I would like to get the sum of the field "Value" for each year where the "Year" equals "ValueYear". But if "Year" is bigger than the biggest "ValueYear" then use "Value" from the rows with the biggest "ValueYear". So in this case below both 2021 and 2022 would show 506 as a result.


I tried this but it only triggers "FinnsEj"

SumValue =
VAR Finns = CALCULATE(SUMX('Meters', 'Meters'[Value]), FILTER('Meters', 'Meters'[ValueYear]= 'Meters'[Year]))
VAR FinnsEj = CALCULATE(SUMX('Meters', 'Meters'[Value]), FILTER('Meters', 'Meters'[ValueYear]= MAX('Meters'[ValueYear])))
RETURN
IF(SUMX('Meters', 'Meters'[Year]) > MAXX('Meters', 'Meters'[ValueYear]), FinnsEj, Finns)

 

Table: Meters

MeteryearpartValueYearValue
13372022H22021253
13372022H12021253
13372022H12019238
13372022H22019238
13372022H22017222
13372022H12017222
13372022H12020239
13372022H22020239
13372022H22018230
13372022H12018230
13372021H12021506
13372021H22021506
13372021H22019475
13372021H12019475
13372021H12017444
13372021H22017444
13372021H12020477
13372021H22020477
13372021H12018459
13372021H22018459

 

 Thanks in advance!

Br
Johannes


1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

Is this what you are looking for?

Screen Capture #920.png

View solution in original post

4 REPLIES 4
Ahmedx
Super User
Super User

Is this what you are looking for?

Screen Capture #920.png

Thanks for this tidy solution 😃

amitchandak
Super User
Super User

@JohannesM , if this is a column, then try like

 

a new column
SumValue =
VAR Finns = CALCULATE(SUMX('Meters', 'Meters'[Value]), FILTER('Meters', 'Meters'[ValueYear]= earlier('Meters'[Year])))
VAR FinnsEj = CALCULATE(SUMX('Meters', 'Meters'[Value]), FILTER('Meters', 'Meters'[ValueYear]= MAX('Meters'[ValueYear])))
RETURN
IF('Meters'[Year] > 'Meters'[ValueYear], FinnsEj, Fin)

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 and thanks,

 

I tried it as a column but got some kind of total for every row. Also, I would like to have it as a measure instead of a new column if possible. But at this rate I would take a new column solution if that fixes things 😃

JohannesM_0-1682320681071.png

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.