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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello Geniues, need your help!
I have three tables with default value 0, and i wanna replace to different values per column.
For instance: i have 1,2,3 columns, wanna replace the value as A,B,C separately per column, how can i do it in one step? with List function?
Really appreciate your help!
Br,
Ranwen
Solved! Go to Solution.
Try following (Razon has English o, so you will need to replace it appropriately)
= Table.TransformColumns(#"Source",{{"RUC EMISOR", each if _="0" then "A" else _},{"DVREL RUC", each if _="0" then "B" else _},{"RAZon Social EMISOR", each if _="0" then "C" else _}})There are other approaches available as well but building in one single step as per your requirement is complex.
Try following (Razon has English o, so you will need to replace it appropriately)
= Table.TransformColumns(#"Source",{{"RUC EMISOR", each if _="0" then "A" else _},{"DVREL RUC", each if _="0" then "B" else _},{"RAZon Social EMISOR", each if _="0" then "C" else _}})There are other approaches available as well but building in one single step as per your requirement is complex.
thank you!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.