Anonymous
4 years agoNot applicable
Split the result
Hi,
Is it possible that I can split the result for the result of "G" and "M" in the Serology test?
this is my table
and my data
Any guidance to solve this?
I've tried to split the column in the result for G and M but only G and M are shown, but for the result of PCR and Antigen is blank.
Thank you in advance
- Anonymous4 years ago
Anonymous Try something like this:
result measure=
IF([Type]="Serology",
IF([detail]="G",LEFT([result],SEARCH(",".[result])-1),RIGHT([result],LEN([result])-SEARCH(",".[result]))
), [result]
)