Hello, I am attempting to calculate the sum of the first three items from a comma-delimited text field of multiple records.
What I have:
A Data Type called “Tracking” with a text field named “Score”
Record 1: Field (“Score”) = 1,0,1,1,1,1,0
Record 2: Field (“Score”) =1,0,0,0,0,0
Record 3: Field (“Score”) = 1,1,1,1,1,1,1
What I want:
The sum of the first three values from each record.
1,0,1 = 2
1,0,0 =1
1,1,1 = 3
So I want the total sum, which would be 2+1+3 = 6
I’ve attached a screenshot of my attempted query.
Any help would be appreciated! Thanks!