cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
gmasta1129
Helper III
Helper III

If Statement with Column and Measure

Hello,

 

I am having issues with the measure value that pulls in when i use it in an if statement with a column

The formula is as follows...

Measure =  if(daily_report[master portfolio id]=729,[Net FX P&L2],CALCULATE(SUM(daily_report[fx prv])))

Measure = Net FX P&L2

Column = Daily_report[fxprv]

Column = daily_report[master portfolio id]

 

When i add the Net FX P&L2 measure to the power bi table, the correct value pulls in.  The issue is when I include the measure in the "if formula", it sums all values for each day even though i have a date slicer set up on my page (set for 3/28/2022).  it should only pull in the value for 3/28/2022 but is summing all values for all dates (1/1/2022-3/28/2022).  Not sure what i am doing wrong.  

  

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@gmasta1129 , That seem more like column not measure , Try a measure like

 

CALCULATE(SUM(daily_report[fx prv]), filter(daily_report,daily_report[master portfolio id] <> 729))
+ CALCULATE([Net FX P&L2], filter(daily_report,daily_report[master portfolio id] = 729))

View solution in original post

v-stephen-msft
Community Support
Community Support

Hi @gmasta1129 ,

 

Your formula with IF function seems to be a calculated column, right? A calculated column is static, it won't be changed by the filter of the slicer. However, measures do. You could create a measure instead of the orginal calculated column.

What is the difference between Power BI calculated columns and measures? - TrueCue.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @gmasta1129 ,

 

Your formula with IF function seems to be a calculated column, right? A calculated column is static, it won't be changed by the filter of the slicer. However, measures do. You could create a measure instead of the orginal calculated column.

What is the difference between Power BI calculated columns and measures? - TrueCue.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@gmasta1129 , That seem more like column not measure , Try a measure like

 

CALCULATE(SUM(daily_report[fx prv]), filter(daily_report,daily_report[master portfolio id] <> 729))
+ CALCULATE([Net FX P&L2], filter(daily_report,daily_report[master portfolio id] = 729))

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors