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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I want to count text which has comma delimiter. See below screenshot
my expected result should be
This is counting Answer column and comma delimiter separate one text from the other.
How can i achieve this?
Solved! Go to Solution.
Hi @Anonymous ,
Create a custom column from Power Query like below:-
List.Count(Text.Split([Answer], ","))
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous ,
Create a custom column from Power Query like below:-
List.Count(Text.Split([Answer], ","))
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
@Samarth_18 thanks for the solution.
However, I getting Error for those that has null value in Answer column.
How can i fix it?