Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
How would you write a formula for a new column that only populates the value from the "YTD-2020M06-Installation Jobs" column if the value in the "Booked vs Actual" column is "Total Booking" AND the value in the "Sell Price/Earned Revenue & Gross Margin/Gross Profit" column is "Gross Margin/Gross Profit"?
In M - edit Query
if [Booked vs Actual] = "Total Booking" and [Sell Price/Earned Revenue & Gross Margin/Gross Profit] = "Gross Margin/Gross Profit" then [YTD-2020M06-Installation Jobs]
if [Booked vs Actual] = "Total Booking" && [Sell Price/Earned Revenue & Gross Margin/Gross Profit] = "Gross Margin/Gross Profit" then [YTD-2020M06-Installation Jobs]
In Dax, new Column
if ([Booked vs Actual] = "Total Booking" && [Sell Price/Earned Revenue & Gross Margin/Gross Profit] = "Gross Margin/Gross Profit" , [YTD-2020M06-Installation Jobs] , blank() )
Hello @CierrahW
Use the following DAX as calculated column:
Output =
IF(
[Booked vs Actutal] = "Total Booking"
&& [Sell Price/Earned Revenue & Gross Margin/Gorss Profit] = "Gross Margin/Gross Profit",
[YTD-2020M06-Installation Jobs]
)
Cheers!
Vivek
If it helps, please mark it as a solution. Kudos would be a cherry on the top 🙂
If it doesn't, then please share a sample data along with the expected results (preferably an excel file and not an image)
Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter
User | Count |
---|---|
12 | |
11 | |
8 | |
8 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |