I am trying to filter rows with string $[‘data’][13] or $[‘data’][3] or $[‘data’][773].
-
I have tried rule based row filter with expression $Column$ LIKE “$[‘data’][??]” => TRUE
but this is only filtering data : $[‘data’][13] or $[‘data’][3] and not $[‘data’][773].
The issue is we might have more data and numbers might increase to something like $[‘data’][773]. (3 digits) and right now data has only 2 digits ($[‘data’][13]), so $Column$ LIKE “$[‘data’][??]” => TRUE is working but $Column$ LIKE “$[‘data’][???]” is not working. -
I have also tried rule based row filter with expression $[‘data’][*]. but it is also including results like $[‘data’][0][‘total_time’] along with what I need.
Can anyone help me with this issue? TIA