Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
JSON value has several parts that I need to grab just one, AnswerText (AT).
AnswerPart:,AnswerColumn:,AnswerText:,AnswerExportValue:,AnswerComment:,AnswerOther
AT contains a value that I have grabbed easily for another function, but for this in particular, I have done a subfield, replace, mid, and index but am not finding the right part I need.
replace(mid(AT,index(AT,':',3)+1,index(AT,',',3)-index(AT,':',3)-1),'"','')
AT can have three values: "Online", "In Person", and "Friend, Family, someone else"
With the above function, I am only grabbing the first value before the comma which removes the ", Family, someone else" of that AT value.
Can anyone help with being able to grab that whole part: "Friend, Family, someone else"?
Help me Obi-Wan Kenobi, you're my only hope
How about
If(Index(AT, 'AnswerText (AT)'), AT) as AT