Hello all,
I have a crosstab query that sets specific dates as field names. Is there an easy way to change the field name from date (numerical) to "Current date", but still give me the current dates information?
I am running access 2003 and below is my SQL code:
[Code=sql]
TRANSFORM First(PRCJ830A.[Accrual Rate]) AS [FirstOfAccrual Rate]
SELECT PRCJ830A.[Fund Number], IIf([Class] Is Null,0,[Class]) AS MultiClass
FROM PRCJ830A
GROUP BY PRCJ830A.[Fund Number], IIf([Class] Is Null,0,[Class])
PIVOT PRCJ830A.Date;[/Code]
I have a crosstab query that sets specific dates as field names. Is there an easy way to change the field name from date (numerical) to "Current date", but still give me the current dates information?
I am running access 2003 and below is my SQL code:
[Code=sql]
TRANSFORM First(PRCJ830A.[Accrual Rate]) AS [FirstOfAccrual Rate]
SELECT PRCJ830A.[Fund Number], IIf([Class] Is Null,0,[Class]) AS MultiClass
FROM PRCJ830A
GROUP BY PRCJ830A.[Fund Number], IIf([Class] Is Null,0,[Class])
PIVOT PRCJ830A.Date;[/Code]
Comment