Forum Discussion
AtchayaP
4 years agoHelper V
Powerbi
3 Replies
- Vijay_A_VermaMost Valuable Professional
If you want comma counting approach, then use below formula
= Text.Length([skills])-Text.Length(Text.Replace([skills],",",""))+1If you have blanks/nulls also, then use below formula
= Text.Length([skills])-Text.Length(Text.Replace([skills],",",""))+Number.From([skills]<>"" and [skills]<>null)- AtchayaPHelper V
this is what I got ..
- Vijay_A_VermaMost Valuable Professional
What is the expected answer?