The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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?