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
Hi
Could anyone tell me how to create a column with the count of categories in the highlighted column
| 100033 | Liquid Lounge | 1 | INR | 74.84666 | 12.87074 | Finger Food, Continental, North Indian |
| 100044 | Village Restaurant | 1 | INR | 74.85946 | 12.89898 | Chinese, Continental, North Indian, Mughlai |
Solved! Go to Solution.
Hi @seemak ,
You can try a custom column with the following code:
List.Count(Text.Split([categoryColumn], ","))
Pete
Proud to be a Datanaut!
Thank you so much Pete, it worked , but we need to remove the +1
I created the custom column List.Count(Text.Split([Cuisines],",")) and it worked perfectly
Ah, yes.
I got confused with something else I was doing counting delimiters.
I'll amend my original answer so it's correct for future viewers.
Pete
Proud to be a Datanaut!
Hi @seemak ,
You can try a custom column with the following code:
List.Count(Text.Split([categoryColumn], ","))
Pete
Proud to be a Datanaut!
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!
| User | Count |
|---|---|
| 11 | |
| 8 | |
| 6 | |
| 5 | |
| 3 |