I create a crosstab table that includes a quarter for 2003 and 2004 respectivly. But since we are in the middle of a quarter right now November and december data is still missing.
In my crosstab I have the following variables
LYKV1 (Last year 1. month in the quarter)
LYKV2 (Last year 2. month in the quarter)
LYKV3 (Last year 3. month in the quarter)
TYKV1 (This year 1. month in the quarter)
TYKV2 (This year 2. month in the quarter)
TYKV3 (This year 3. month in the quarter)
But since november and december data are missing for 2004, TYKV2 and TYKV3 is unavailable. Therefor I would need my report to enter zeros (0) for each output.
I have tried this formula:
=IIf(IsError([TYKV2]);0;[TYKV2])
But it returns 0 even though the variable TYKV2 has a value.
What should I do to correct this formula?
In advance tx
In my crosstab I have the following variables
LYKV1 (Last year 1. month in the quarter)
LYKV2 (Last year 2. month in the quarter)
LYKV3 (Last year 3. month in the quarter)
TYKV1 (This year 1. month in the quarter)
TYKV2 (This year 2. month in the quarter)
TYKV3 (This year 3. month in the quarter)
But since november and december data are missing for 2004, TYKV2 and TYKV3 is unavailable. Therefor I would need my report to enter zeros (0) for each output.
I have tried this formula:
=IIf(IsError([TYKV2]);0;[TYKV2])
But it returns 0 even though the variable TYKV2 has a value.
What should I do to correct this formula?
In advance tx