Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi
I need to add a coumn to my report, based on the value of 2 other columns but only have a value where the specific values are met, anything else should be null or blank.
Status | Owner | New Column |
Open | John Smith | If Status = Open & Owner = John Smith then value = "In Remediation" else blank |
Closed | John Smith | if status = Closed & Owner = John Smith then value = "Remediaiton Closed" else blank |
What I'm trying to acheive i've added to the "New Column" above, is there an easy way to acheive this?
Solved! Go to Solution.
Hi @Jason_Auburn
Please create calculated column as below:
New column= IF('Table'[status]="Open" && 'Table'[Owner]="John Smith","In Remediation", IF(Table'[status]="Close" && 'Table'[Owner]="John Smith","Remediaiton Closed",Blank()))
Let me know your answer!
Click on transform. Select table:
Click add column tab. Click Custom column
Don't forget to give thumbs up and accept this as a solution if it helped you!!!
Hi @Jason_Auburn
Please create calculated column as below:
New column= IF('Table'[status]="Open" && 'Table'[Owner]="John Smith","In Remediation", IF(Table'[status]="Close" && 'Table'[Owner]="John Smith","Remediaiton Closed",Blank()))
Let me know your answer!
Thank you! this worked perfectly
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |