
Announcements
I am trying to extract the string text "Complete" from a format like this => {"Status":"Complete"}.
My formula below is extracting the string like so => :"Complete"}
How can i improve my formula to only get a clean text such as Complete?
Thanks !
subString(variables('DataVar'),indexOf(variables('DataVar'),':'),sub(length(variables('DataVar')),indexOf(variables('DataVar'),':')))
Hi @Goldenxx
There are different ways you could do this.
Expression I used above is
Thanks