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!View all the Fabric Data Days sessions on demand. View schedule
Hello Super Dax Greatness:
Due to some hectic permutations of productivity Matrix SQL I get a column with
1, 2, 3 and sometimes 4 entries related to 1 encounter. I wish to sum them--can I do that using DAX somehow and splitting the column by the | as shown below?
Thanks!
Solved! Go to Solution.
In the Power Query M editor add custom column:
List.Sum(
List.Transform(
Text.Split([C_time], "|"),
each Number.FromText(_)
)
)
It will work for any splitter it founds (see last row)
Proud to be a Super User!
In the Power Query M editor add custom column:
List.Sum(
List.Transform(
Text.Split([C_time], "|"),
each Number.FromText(_)
)
)
It will work for any splitter it founds (see last row)
Proud to be a Super User!
I tried to split on the | --I could not somehow--then I would simply sum the two columns---
or do you need it?
Is this what you are looking for?
Yes--indeed--to sum them together---It's a complex issue and I had to use the WITHIN GROUP SQL function to make it work.
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!