Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all,
Whats the quickest way to add a new column that states IF = 'DocumentName' THEN 'New Document Name'
for example IF 'PASSPORT' THEN 'RTW'?
Thanks
Solved! Go to Solution.
Try like
New Document Name = IF([DocumentName] ="PASSPORT","RTW",[DocumentName])
Or
New Document Name = switch(true(),
[DocumentName] ="PASSPORT","RTW",
//Add more
[DocumentName])
Try like
New Document Name = IF([DocumentName] ="PASSPORT","RTW",[DocumentName])
Or
New Document Name = switch(true(),
[DocumentName] ="PASSPORT","RTW",
//Add more
[DocumentName])
| User | Count |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 59 | |
| 36 | |
| 35 |