The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
HI All,
I have a Data set with persons and 2 telephone numbers and emailadresses. I want to have an extra column which should tel me if there is a difference between those two columns for that specific ROW
Example
Name | tel nr 1 | Tel nr 2 | the Same? |
Joe | +444444 | +444444 | Yes |
Jane | +333333 | +333334 | No |
BIll | +111111 | +111112 | No |
I want to apply the same logic to 2 email columns. Can you help me how to achieve this. I can do it in Power query or in DAX.
Thanx
Solved! Go to Solution.
Create a custom colum in power query:
if [tel nr 1] = [Tel nr 2] then "Yes" else "No"
Same for the email columns.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
Create a custom colum in power query:
if [tel nr 1] = [Tel nr 2] then "Yes" else "No"
Same for the email columns.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
87 | |
84 | |
36 | |
35 | |
30 |
User | Count |
---|---|
95 | |
74 | |
67 | |
52 | |
51 |