Hi all,
I have a column that tracks activity, and is fairly messy since it comes directly from a database.
here is a sample of some of the cell contents from the column "Track" (each line below represents a cell):
{sent_first_weekly_digest": "2023-12-08 03:10:40"
{skip_reasons": ["1"], ["2"]
{skip_reasons": ["0", sent_first_weekly_digest": "2023-12-08 03:10:40"
What I'm trying to do is count the number of times each skip reason appears. I'm struggling because the formulas I have tried, don't seem to like the ["1", either because of the brackets or because of the "" marks, so they aren't returning the results I want. I can't use the number not joined with the quotes though, because then it will return two 1s and three 2s for the first cell from the date/time.
Here are the two formulas I have tried, both resulting in #unparsable:
=COUNTIF(Track@row, CONTAINS("1", Track@row))
= (LEN([Track]@row) - LEN(SUBSTITUTE([Track]@row, "["1"", ""))) / LEN("["1"")
Any ideas for how I might tackle this?