I have a query I would like to put into 25 tabs.
QS36F_TOPCUSTS. F2 is the employee number. Each employee has about 75 companies assigned to them. I would like each (F2 "Employee") to have their own tab of companies. How can I perform that without making 25 different queries?
Code:
SELECT QS36F_TOPCUSTS.F1, QS36F_CMASTR.CU_NME, QS36F_TOPCUSTS.F2 FROM QS36F_CMASTR INNER JOIN QS36F_TOPCUSTS ON QS36F_CMASTR.CU_CUS = QS36F_TOPCUSTS.F1;
Comment