Simple Json Parsing a specific value

Hi there.

I’d love to have some help here.

I’m trying to parse a json like this:

{“timezone”:“UTC”,“serverTime”:1664284439,“Date”:“2022-09-27 13:00:00”,“distance”:{“Values”:“54567954,50166144,51358108,54300970,58183307,45790616,39092278,56470072,47141967,55403643,53378233,53659547,55158908,55158908”}}

And I just want to retrieve the last value “55158908”.
This is dynamic because every minute a new value will appear. My problem is not the iteration of the process. Is just the parsing of that last specific value that is annoying me.

If someone could help me here, I will be very grateful.

Thanks in Advance

with
grafik

we can do
grafik

1 Like

@Tracerecart first get these values and store it in testVar

54567954,50166144,51358108,54300970,58183307,45790616,39092278,56470072,47141967,55403643,53378233,53659547,55158908,55158908

And then use

Split(testVar,“,”).last

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.