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!
| Customer | Price |
| Costco USA | 754 |
| Walmart MX | 365 |
| Kenny's USA | 956 |
| Freddy's | 457 |
From the table above I need to replace the whole cell value for only those that contain the word "USA" to "Offboarded" so I can end up with a table like this
| Customer | Price |
| Offboarded | 754 |
| Walmart MX | 365 |
| Offboarded | 956 |
| Freddy's | 457 |
I have looked into DAX's "Replace" and "substitute" but cannot make it work for this particular scenario where I believe the usage of *wildcards* may be required.
Any suggestions are truly appreciated.
Solved! Go to Solution.
@Anonymous , Try a new column like
if(search("USA",[Customer],,0) >0, "Offboarded",[Customer])
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 132 | |
| 105 | |
| 59 | |
| 39 | |
| 31 |