This is pretty easy. Here's how I did it using an intermediate table:

I started with 5 separate tables of expenses. the categories in each are the same, but they don't have to be.
Then I created a separate table to summarize the data.
For Summary Table::A2 I set this as a Pop-up Menu with entries that match the categories in T1..T5. This makes it easy to pick which category I want to chart.
For cell Summary Table::B2, I set the formula:
=XLOOKUP($A$2,T1::A,T1::B,0,0,1)
This performs a lookup taking the value of cell $A$2 (the pop-up menu) and searching for it in column A of Table T1 (T1::A). For any match, it returns the corresponding value from T1::B. Missing matches return 0.
Copy this formula across the row, changing it to refer to T2, T3, T4 and T5.
Now, picking a category from the menu automatically updates to show the corresponding values from the individual tables.
It's also now a cinch to create a pie chart - just select the Summary Table and click the Chart icon in the toolbar. Pick a pie chart and you're done. Those numbers are charted, and selecting a different option from the poup menu in A2 automatically updates the chart