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
New to the Power BI world..
I am looking to create a new column that takes the value from another column if the column has a specific value.
Example:
If the home_station column has the name XYZ I would like my new column to return the value from the work_station. If the value is not XYZ, then I want to keep the value from from home_station. Please see example below
Solved! Go to Solution.
Thank you. Now, one question, if there are multiple values I want to change do I include "and,if" and if so how do I set that up? Been working on that and its not working
HI @sccoleman1189,
Maybe you can try to use 'in' operator to handle multiple values.
OR Condition=
IF (
PBI_Report[HOME_STATION] IN { "XYZ", "MNO" },
PBI_Report[WORK_STATION],
PBI_Report[HOME_STATION]
)
AND Condition =
IF (
PBI_Report[HOME_STATION] = "XYZ" && PBI_Report[BU] = "XXX",
PBI_Report[WORK_STATION],
PBI_Report[HOME_STATION]
)
Reference links:
Regards,
Xiaoxin Sheng
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.