Forum Discussion
Addcolumn with if statement
Hi community,
I'm looking for some help with an ADDCOLUMN expression.
I need to add a new column called "RevenueType" in the BookingStatus table which groups BookingCodes A, R, H and CX as "Confirmed revenue" with all remaining codes as "Provisional".
Here is a pbix example.
I've got as far as creating the if statement:
It should be noted that this has to be a DAX expression and the data cannot be modified in the query editor.
I'm hoping someone in the community can help as I've been stuck on this for some time!
8 Replies
- Vasuno1Frequent Visitor
I am not sure that you need to use the addcolumn function for this but if you really need to let me know.
I achieved what you are looking for by adding a new column as shown below:
Then I inputted the following in the formula bar:
RevenueType = IF('Booking statuses'[BookingCode] in {"A","R","H","CX"},"Confirmed Revenue", "Provisional")RevenueType = IF('Booking statuses'[BookingCode] in {"A","R","H","CX"},"Confirmed Revenue", "Provisional")See result below: - SpartaBICommunity Champion
C4L84 do you mean like this?
RevenueType = IF('Booking statuses'[BookingCode] in {"A","R","H","CX"}, "Confirmed revenue", "Provisional")
Here is a link to download the file with the solution:
Addcolumn with if statement 2022-08-02.pbix