Hi @Noah100 ,
I am assuming that you want the second row from the bottom of the table. This we can get by calculating the length of the array and skipping the first few rows.
first(skip(outputs('List_rows_present_in_a_table')?['body/value'],sub(length(outputs('List_rows_present_in_a_table')?['body/value']),2)))
Also an additional point the above expression will return an object , if you want an array then you can use the array function along with the above expression. The expression if you want an array will be as below,
array(first(skip(outputs('List_rows_present_in_a_table')?['body/value'],sub(length(outputs('List_rows_present_in_a_table')?['body/value']),2))))
Hope this helps!
If this solves your problem , please give this answer a thumbs up and accept it as a solution.
Thanks,