Hi,
I have table and would like to create a column with below logic. I am using directquery so unable to use add column function under the transform data.
If status="not ready" then use reason code from ReasonCode column else use the Status.
Agent | Status | ReasonCode | ***New column needed |
1 | Ready | Ready | |
2 | Not Ready | Break | Break |
3 | Not Ready | Meeting | Meeting |
Thanks,
Daven
Solved! Go to Solution.
Hi @Daven
Try this
Column = IF( CONTAINSSTRING('Table'[Status], "Not Ready"), 'Table'[ReasonCode], 'Table'[Status])
Regards
Phil
Proud to be a Super User!
Hi @Daven
Try this
Column = IF( CONTAINSSTRING('Table'[Status], "Not Ready"), 'Table'[ReasonCode], 'Table'[Status])
Regards
Phil
Proud to be a Super User!
Thanks Phil!
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Welcome to the Power BI Community Show! Jeroen ter Heerdt talks about the importance of Data Modeling.
Mark your calendars and join us on Thursday, May 26 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
348 | |
100 | |
63 | |
52 | |
47 |
User | Count |
---|---|
336 | |
124 | |
87 | |
66 | |
66 |