N
nilses
Hello,
I ve a crossTab Query like that and i would like summing
the rows from total to 3730IR except Type. I think it's
not possible because there are not word in SQL which
remove a field like this
"SELECT *, Excluding Type FROM [Table: DataBase General -
Selection Parc machine - MO9]"
If it true, we can do this in an other query after the
cross tab query if i want summing the product
"SELECT SUM(*) FROM [Table: DataBase General - Selection
Parc machine - MO9]"
TRANSFORM Count([Table: DataBase General - Selection Parc
machine - MO9].Type) AS CompteDeType
SELECT [Table: DataBase General - Selection Parc machine -
MO9].Type, Count([Table: DataBase General - Selection
Parc machine - MO9].Type) AS Total
FROM [Table: DataBase General - Selection Parc machine -
MO9]
GROUP BY [Table: DataBase General - Selection Parc
machine - MO9].Type
PIVOT [Table: DataBase General - Selection Parc machine -
MO9].Type;
This the result of my crosstab query
Type Total 3730 3730EE 3730IR
3730 49 49
3730EE 3 3
3730IR 19 19
Is it possible to summing only total and the other fields?
Thanks
Nilses
I ve a crossTab Query like that and i would like summing
the rows from total to 3730IR except Type. I think it's
not possible because there are not word in SQL which
remove a field like this
"SELECT *, Excluding Type FROM [Table: DataBase General -
Selection Parc machine - MO9]"
If it true, we can do this in an other query after the
cross tab query if i want summing the product
"SELECT SUM(*) FROM [Table: DataBase General - Selection
Parc machine - MO9]"
TRANSFORM Count([Table: DataBase General - Selection Parc
machine - MO9].Type) AS CompteDeType
SELECT [Table: DataBase General - Selection Parc machine -
MO9].Type, Count([Table: DataBase General - Selection
Parc machine - MO9].Type) AS Total
FROM [Table: DataBase General - Selection Parc machine -
MO9]
GROUP BY [Table: DataBase General - Selection Parc
machine - MO9].Type
PIVOT [Table: DataBase General - Selection Parc machine -
MO9].Type;
This the result of my crosstab query
Type Total 3730 3730EE 3730IR
3730 49 49
3730EE 3 3
3730IR 19 19
Is it possible to summing only total and the other fields?
Thanks
Nilses