To enhance the performance of your queries, these are a couple of techniques that might useful:
1. Optimize this process by filtering the tables before the join operation, reducing the number of rows that need to be processed.
2.Merge Queries: If possible, merge the subtables into a single table before joining with Table 1. This can sometimes lead to better performance than multiple NestedJoin operations.
3. Alternative approach instead of using Table.NestedJoin to merge and expand the tables use Record.Lookup as this is faster for key-based lookups.
If the above steps doesn't work fine, to address your concern effectively, we kindly request additional data so that it will better to understand deeply.
If you have any further questions or need additional help with this, feel free to reach out to us for further assistance!
If you find this post helpful, please mark it as an "Accept as Solution" and give a KUDOS.