Hi there,
I have one column which stores ID numbers - here’s an example:
“#23323, #785, #209809”
I’m trying to create a formula column to count the number of ID numbers (so for the above example it would return “3”), but I’m having difficulty.
Can anybody suggest any solutions?
So far I’ve tried replacing the hashtags with spaces and using the COUNT() function like this:
COUNT(SUBSTITUTE({ID Numbers}, “#”, " "))
but that just returns either “1” regardless of how many IDs there are, or an error.
I’ve looked through the other options for formulas but can’t find anything that works. Any suggestions would be much appreciated!