I would like to get my query result records split into 2 columns
This is the Query
I would like to have the first 5 records in the 2nd and 3rd columns and the other records in columns 4 and 5 in the first column I want to stay with item id.
Is there a way how this can be done?
This is the Query
Code:
SELECT tblPRItemEmployeeTaxHist.ItemID, tblPRItemEmployeeTaxHist.TmpName, tblPRItemEmployeeTaxHist.TaxAmount
FROM tblPRItemEmployeeTaxHist;
I would like to have the first 5 records in the 2nd and 3rd columns and the other records in columns 4 and 5 in the first column I want to stay with item id.
Is there a way how this can be done?