Hi,
the following query is not displaying data in Grid
SELECT Region, Year, ‘EPC’ Family, ‘Total’ Total, Sum(Units) as [Units] FROM tblFinancials WHERE Region = ‘USA’ AND X6_Desc = ‘EPC’ GROUP By Region, Year
but if i modify the above query as below:
SELECT Region, Year, Sum(Units) as [Units] FROM tblFinancials WHERE Region = ‘USA’ AND X6_Desc = ‘EPC’ GROUP By Region, Year
then it works fine, i just omit ‘EPC’ Family, ‘Total’ Total from the query. Do Grid connector support such queries?if yes then is there some other parameters to set?