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
I need help to Split this text based on delimeter "Comma"
can anyone help me with "DAX"?
Thanks in Advance
Solved! Go to Solution.
try
Column =
var _start = SEARCH("""Type", [Column1],,0)
var _finish = SEARCH(",", [Column1], _start)
RETURN
IF(_start > 0, MID([Column1], _start, _finish - _start), BLANK() )
@Mariusz : no, i need to use DAX, the above DAX is looking fine but it's just giving me error because few rows in my table doen't have "Type", thank you.
@az38 : Thank you so much for the response but this is giving me error because few rows doesn't contain "Type" in my Table, can you tell me how to modify this DAX ?
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!