Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
Trying to figure how to do this but no luck so far.
Col1, type text, contain two rows, "K" & "1"
What I want to do is add a column using logic like this: if Col1 not a number then Col1 else null.
I am think I need something like: if (!ParseAsNumber(Col1)) then ...
Suggestions appreciated.
Thanks,
-Wes
Solved! Go to Solution.
@Anonymous
Try this Custom Column in Query Editor
=let mylist=List.RemoveItems(List.Transform({1..126}, each Character.FromNumber(_)),{"0".."9"})
in
if List.Contains(mylist,Text.From([Column1])) then [Column1] else null
@Anonymous
Try this Custom Column in Query Editor
=let mylist=List.RemoveItems(List.Transform({1..126}, each Character.FromNumber(_)),{"0".."9"})
in
if List.Contains(mylist,Text.From([Column1])) then [Column1] else null
That works. Thanks so much.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.