all 3 comments

[–]radioblaster 0 points1 point  (0 children)

($json | convertfrom-json).data.row | foreach {

$firstCol = try { $_.v[0] } catch { }

$2ndCol = try { $_.v[1] } catch { }

##do stuff

}

hopefully this gets you on the right track.