Visualize separate metrics results as a single table

I have two Prometheus metrics for each service:
for service one:
service1_total_results_amount
service1_empty_results_amount
and for service two:
service2_total_resulst_amount
service2_empty_results_amount

all of them sharing the same label app_kubernetes_io_name

So I add queries and transformations like this


and the final result I got is:

So the question is how can I avoid showing this Value #D and Value #C but show the in already existing columns Total amount of search requests and Amount of empty results??? Probably I need somehow combine this query #D and query #C with the first two, but I do not know how… I tried to add them with a comma separator but in such a case I do not see any info at all. Thank you!