Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!