Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
ssspk
Helper I
Helper I

Count number of elements in each column cell (Delimiters) and display the values in the new column?

Hi,

Having a column like below,

Data:

"[""bTravel"",""bTravel Planning"",""travel booking"",""travel planning""]"
[]
"[""engine"",""news"",""search""]"
[]
"[""collaboration"",""connect"",""connections"",""network""]"

Column DataColumn Data

To get the count of the words in each cell using a delimiter comma(,).

Used fx as below for the specific count of keywords,

New Column name is keywords count.

 

= Table.AddColumn(applicationcatalog_Table, "keywords count", each List.NonNullCount(Text.Split([keywords],",")))

 

Result:

Result of CountResult of Count

 

Why its displaying resuit as 1 in cell, instead of 0 as result for []  in the coulun(keywords count) cells.?

Thank you.

 

1 ACCEPTED SOLUTION
v-tangjie-msft
Community Support
Community Support

Hi @ssspk ,

 

vtangjiemsft_0-1703556921110.png

 

The list after separating by "," is not empty, so the function works as designed, the solution is

You can add another column:

 

 

= Table.AddColumn(#"Added Custom", "Custom", each if [keywords] = "[]" then 0 else if [keywords] <> "[]" then [keywords count] else null)

 

 

Picture2.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

2 REPLIES 2
v-tangjie-msft
Community Support
Community Support

Hi @ssspk ,

 

vtangjiemsft_0-1703556921110.png

 

The list after separating by "," is not empty, so the function works as designed, the solution is

You can add another column:

 

 

= Table.AddColumn(#"Added Custom", "Custom", each if [keywords] = "[]" then 0 else if [keywords] <> "[]" then [keywords count] else null)

 

 

Picture2.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Hi @v-tangjie-msft ,

Thank you for your time and solution. Its working fine.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.