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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I have a CSV file with 3 colums and the data is spread out across the three colums.
Is it possible to move the data to the Resource Group colum if it starts with MSC-?
Solved! Go to Solution.
Sort of, you are likely going to need 3 additional columns.
You would start with a column like:
= Table.AddColumn(#"Changed Type", "Custom", each if Text.StartsWith([Column], "MSC") then [Column] else null)
You'll probably have to add some OR statements to it for your specific case. You will then need essentially the reverse for your other 2 columns so that they bring over the value if something does not start with MSC. Once all that is done, you remove your original 3 columns and rename your 3 remaining columns the original column names.
Sort of, you are likely going to need 3 additional columns.
You would start with a column like:
= Table.AddColumn(#"Changed Type", "Custom", each if Text.StartsWith([Column], "MSC") then [Column] else null)
You'll probably have to add some OR statements to it for your specific case. You will then need essentially the reverse for your other 2 columns so that they bring over the value if something does not start with MSC. Once all that is done, you remove your original 3 columns and rename your 3 remaining columns the original column names.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 64 | |
| 50 | |
| 45 |