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! Get ahead of the game and start preparing now! Learn more
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])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 137 | |
| 102 | |
| 71 | |
| 67 | |
| 65 |