Convert multiple excel formulas to single DAX formula

Grinch356

New Member
Joined
Jan 6, 2015
Messages
31
Hi,
I am trying to find a way in powerpivot of combining three 4 validation test columns into one column. The idea is that if the result in test 3 comes up with 'Exclude', I will filter it out of of a measure for a calculation I am doing. I have demonstated the calculations I am trying to combine in fields k-n, not sure if anyone can help arrive at this result in one single powerpivot calculation - thanks for looking at this if you can help.
https://onedrive.live.com/redir?res...344&authkey=!ABsaTOjjG2RAYHU&ithint=file,xlsx
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Certainly doable. I'm sure I messed up field names and parens, but it is something like:

Code:
If ([TOT_DEMAND]+[Original]+[Revised] = 0, "EXCLUDE - ZERO DATA",
  IF([TOT_DEMAND] > 6, "KEEP", 
  IF([Original]+[Revised] < 0.49, "Exclude - Residual Forecast", 
  "KEEP")
))
 
Upvote 0

Forum statistics

Threads
1,224,074
Messages
6,176,216
Members
452,715
Latest member
DebbieCox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top