H
hermie
Hello
In my crosstabquery i have some field which shows blanks. I want to see a 0.
How can I manage to show a 0 insteas of a blank?
I tried to NZ function with no result.
Example:
city total fieldA FieldB
a 5 1 4
b 7 7 0
Here is the SQL
TRANSFORM Count([HG-001 query].SEG_SOC_PART) AS CountOfSEG_SOC_PART
SELECT [HG-001 query].[MUNICIPIO-REFERIDO], Count([HG-001
query].SEG_SOC_PART) AS [Total Of SEG_SOC_PART]
FROM [HG-001 query]
GROUP BY [HG-001 query].[MUNICIPIO-REFERIDO], [HG-001 query].Inactivo
PIVOT [HG-001 query].Prog_plura;
How can i show the 0 value?
Herman
In my crosstabquery i have some field which shows blanks. I want to see a 0.
How can I manage to show a 0 insteas of a blank?
I tried to NZ function with no result.
Example:
city total fieldA FieldB
a 5 1 4
b 7 7 0
Here is the SQL
TRANSFORM Count([HG-001 query].SEG_SOC_PART) AS CountOfSEG_SOC_PART
SELECT [HG-001 query].[MUNICIPIO-REFERIDO], Count([HG-001
query].SEG_SOC_PART) AS [Total Of SEG_SOC_PART]
FROM [HG-001 query]
GROUP BY [HG-001 query].[MUNICIPIO-REFERIDO], [HG-001 query].Inactivo
PIVOT [HG-001 query].Prog_plura;
How can i show the 0 value?
Herman