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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
popescu
New Member

Table row conditional Formula

Currently, I have next measure which gives the expected result for  the rows 1801.00 and 0801.00:

 

"Formula 1"

CALCULATE(IF([Invoiced to date]<[Work Budget];
IF([Invoiced to date]<[Commitments];0;[Commitments]-[Invoiced to date]);
IF(AND([Commitments]<[Work Budget]; [Commitments]< [Invoiced to date]); [Commitments]-[Invoiced to date];MIN([Commitments];MIN([Invoiced to date];[Work Budget]))-( [Invoiced to date])) + [Manual Adjustments]) ;'Project budget lines'[Cost line] IN {"1801.00"; "0801.00"})
 
However, there's other rows as well, for which the calculation is different:
 
"Formula 2"
CALCULATE(IF([Invoiced to date]>[Work Budget];
IF([Invoiced to date]>[Commitments];0;[Commitments]-[Invoiced to date]);
IF(AND([Commitments]>[Work Budget]; [Commitments]> [Invoiced to date]); [Commitments]-[Invoiced to date];MAX([Commitments];MAX([Invoiced to date];[Work Budget]))-( [Invoiced to date])) + [Manual Adjustments]) ;'Project budget lines'[Cost line] <> {"1801.00"; "0801.00"}) 
 
How to combine these formula's into one measure, resulting in one column:
 
Row Code    Column A Value
0801.00        " value based on formula 1'
1801.00        "value based on formula 1'
2000.00        " value based on formula 2'
2000.01        " value based on formula 2'
2000.02       " value based on formula 2'
2300.04       " value based on formula 2'
 
Anxious which PowerBI guru can help me in this!
 
1 ACCEPTED SOLUTION

As per need create the that cloumn as measure:

 

Measure=sum(Project budget lines'[Cost line])

 

Later

Measure 1= if(Measure in condtion, Formula1, Formula2)

View solution in original post

4 REPLIES 4
hthota
Resolver III
Resolver III

Create a measure as given below:

 

Measure= if(Project budget lines'[Cost line] IN {"1801.00","0801.00"},Formula1,Formula2)

Hi,

 

thanks, makes sense, however I cannot select/set the Table field  (Project budget lines'[Cost line] )  in the measure. It's only coming up with other measures, and not with table values?

 

 

As per need create the that cloumn as measure:

 

Measure=sum(Project budget lines'[Cost line])

 

Later

Measure 1= if(Measure in condtion, Formula1, Formula2)

Thanks for your help. Solved! 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.