Forum Discussion
Sykboardrider
6 years agoFrequent Visitor
Column comparison output
Hi All.
I am quite new to PBI and I am a little stuck with something.
I am trying to create a new column that is can provide me with the following output.
| Value A | Value B | New Column |
| True | False | False |
| True | True | True |
| False | True | False |
| False | false | False |
- Anonymous6 years ago
Both TRUE is true?
New Column =
yourTable[Value A]=TRUE() && your[Value B]=TRUE()
4 Replies
- AnonymousNot applicable
Both TRUE is true?
New Column =
yourTable[Value A]=TRUE() && your[Value B]=TRUE()
- SykboardriderFrequent Visitor
Anonymous
Thank you very much, that worked perfectly!
- judspudSolution Supplier
Please can you clarify the logic you would like to apply?
is it if they are both true then true otherwise false?
Thanks,
George
- SykboardriderFrequent Visitor
Hi.
Yes, that is the correct logic.