Does anyone know if there is a way to program a query to produce a report with a blank column for every other row?
Example
Cross tab Query:
TRANSFORM Val(Nz(Sum([Openings by Country].[OPEN POS]),0)) AS [SumOfOPEN POS]
SELECT [Openings by Country].COUNTRY, [Openings by Country].Region
FROM [Openings by Country]
GROUP BY [Openings by Country].COUNTRY, [Openings by Country].Region
ORDER BY [Openings by Country].Region
PIVOT [Openings by Country].LOB;
I would like the report to display a blank column in between each LOB.
Any ideas are much appreciated.
Thanks!
Example
Cross tab Query:
TRANSFORM Val(Nz(Sum([Openings by Country].[OPEN POS]),0)) AS [SumOfOPEN POS]
SELECT [Openings by Country].COUNTRY, [Openings by Country].Region
FROM [Openings by Country]
GROUP BY [Openings by Country].COUNTRY, [Openings by Country].Region
ORDER BY [Openings by Country].Region
PIVOT [Openings by Country].LOB;
I would like the report to display a blank column in between each LOB.
Any ideas are much appreciated.
Thanks!