Hello, i need some help
In my report i have the next query
SELECT TOP 100 Me_Sicex.FOLIO, Me_Sicex.PERMISO, Me_Sicex_Dtl.DESCRIPCION
FROM Me_Sicex INNER JOIN
Me_Sicex_Dtl ON Me_Sicex.FOLIO = Me_Sicex_Dtl.FOLIO
I want to make a group for the three data fields, but when i show the report i doesn't make the group correctly.
In the group options i put the three fields but i don't see it works correctly.
Then i group it in the sql query analizer and it group them right. Here is the query:
SELECT TOP 100 Me_Sicex.FOLIO, Me_Sicex.PERMISO, Me_Sicex_Dtl.DESCRIPCION,
FROM Me_Sicex INNER JOIN
Me_Sicex_Dtl ON Me_Sicex.FOLIO = Me_Sicex_Dtl.FOLIO
group by Me_Sicex.FOLIO, Me_Sicex_Dtl.DESCRIPCION, Me_Sicex.PERMISO
What am i doing wrong??
Need Help Please!!!
Sorry for my bad english.
In my report i have the next query
SELECT TOP 100 Me_Sicex.FOLIO, Me_Sicex.PERMISO, Me_Sicex_Dtl.DESCRIPCION
FROM Me_Sicex INNER JOIN
Me_Sicex_Dtl ON Me_Sicex.FOLIO = Me_Sicex_Dtl.FOLIO
I want to make a group for the three data fields, but when i show the report i doesn't make the group correctly.
In the group options i put the three fields but i don't see it works correctly.
Then i group it in the sql query analizer and it group them right. Here is the query:
SELECT TOP 100 Me_Sicex.FOLIO, Me_Sicex.PERMISO, Me_Sicex_Dtl.DESCRIPCION,
FROM Me_Sicex INNER JOIN
Me_Sicex_Dtl ON Me_Sicex.FOLIO = Me_Sicex_Dtl.FOLIO
group by Me_Sicex.FOLIO, Me_Sicex_Dtl.DESCRIPCION, Me_Sicex.PERMISO
What am i doing wrong??
Need Help Please!!!
Sorry for my bad english.