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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
Having a column like below,
Data:
"[""bTravel"",""bTravel Planning"",""travel booking"",""travel planning""]"
[]
"[""engine"",""news"",""search""]"
[]
"[""collaboration"",""connect"",""connections"",""network""]"
Column 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 Count
Why its displaying resuit as 1 in cell, instead of 0 as result for [] in the coulun(keywords count) cells.?
Thank you.
Solved! Go to Solution.
Hi @ssspk ,
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)
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 @ssspk ,
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)
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 @Anonymous ,
Thank you for your time and solution. Its working fine.
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 |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |