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, I have a dataset that I am bringing in from CRM which is an multi-select option set . Because this is a multi-select, it populates as a concatenated value and I am unable to build a relationship between the Option Set and the dataset. I need the relationship to bring the text description (Justification Description) against the individual values (att 2). I have tried to use List.ReplaceMatching items in the query (att 3) which threw an error message (att 4). This is not an ideal solution in any case because if there is a new value added to the Option Set it would have to be added in manually.
Hi @Anonymous ,
You can split the dxc_authorityjustifications column values into multiple rows in your first picture, then you can create a relationship based on this column.
= Table.AddColumn(Source, "Custom", each Table.FromColumns({Text.Split([Column2], ",")}))
Reference:
https://community.powerbi.com/t5/Desktop/split-values-into-multiple-rows/td-p/107946
Best Regards,
Qiuyun Yu
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.