Forum Discussion
ritanoori
6 years agoResolver I
Value.Is
Hi everyone In Power Querey, I'm trying to find out a way that whenever my Reference Col starts with FX and contain numbers then "Internal" Example: FX12345 else if it starts with FX and contain...
- 6 years ago
Hi ritanoori ,
Try this custom column:
if Value.Is(Value.FromText(Text.AfterDelimiter([Column1], "FX")), type number) = true then "Internal FX Deal"
else "External DX Deal"
camargos88
6 years agoCommunity Champion
Hi ritanoori ,
Try this custom column:
if Value.Is(Value.FromText(Text.AfterDelimiter([Column1], "FX")), type number) = true then "Internal FX Deal"
else "External DX Deal"
- ritanoori6 years agoResolver I
Thank you so so much!!! 🙂