Forum Discussion
baBI123
8 years agoHelper II
COUNT WITHIN A CELL
Hello BI community, I was wondering if anyone could help me out with COUNTing the number of itms in a cell within a column. see attached pic For example, I need a new colum that would read...
- 8 years ago
The trick to this is using SUBSTITUTE:
Column = LEN([PO list]) - LEN(SUBSTITUTE([PO list],",","")) + 1
Greg_Deckler
8 years agoCommunity Champion
The trick to this is using SUBSTITUTE:
Column = LEN([PO list]) - LEN(SUBSTITUTE([PO list],",","")) + 1
- baBI1238 years agoHelper II
THANK YOU Greg_Deckler!! That worked perfectly!