A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Without VSTACK (really, don't bother doing it this way (there must be a better way)):
…and thats with the same number of columns, no headers. Yuk.
I suppose it could be made into a lambda function to hide all this nonsense.
Here's that nonsense:
and the lambda is called VertStack and the formula is:
=LAMBDA(FILT1,FILT2,LET(ColmCount,COLUMNS(FILT1),DestnArray,SEQUENCE(ROWS(FILT1)+ROWS(FILT2)+1,ColmCount),colms,MOD(DestnArray-1,ColmCount)+1,rws,INT((DestnArray-1)/ColmCount)+1,IFERROR( IF(DestnArray<=((ROWS(FILT1)+1)*ColmCount), INDEX(FILT1,rws,colms), INDEX(FILT2,rws-ROWS(FILT1)-1,colms)),"")))
Only 2 tables and the same number of columns in both filters. I think I've worked this one to death.