Forum Discussion
Anonymous
4 years agoNot applicable
How to replace substring in If condition in Power query
| id | description |
| 1 | 123acx |
| 1 | 123acx |
| 2 | 456qwe |
Hi,
i want to replace 123 to 789(or first 3 value to another 3 value), if the id column == 1, and "acx" remains. how should i code in power query? Very appreciate your help!
Anonymous
if [id]=1 and Text.Contains([description],"acx") then Text.Replace([description],"123","789") else [description]
2 Replies
- smpa01Community Champion
Anonymous
if [id]=1 and Text.Contains([description],"acx") then Text.Replace([description],"123","789") else [description]- AnonymousNot applicable
Great! thanks for your solution. it works!