Hello All,
I have the following query which is pulled from another query and tables, it is duplicating some rows and I can't figure out why, the original Query has 60 records and this one has 3960 records. I want the same 60 but with the additional columns.
I'd appreciate your help a lot, thanks!
this is the SQL:
SELECT [Qry-CertLast].Estación, [Qry-CertLast].MaxOfFecha, [Qry-CertLast].Operador, [tbl-1-2-Estaciones].DíasCert, IIf([MaxOfFecha]+[DíasCert]>Now(),"Vigente","Vencída") AS Status, [MaxOfFecha]+[DíasCert] AS Due
FROM [Qry-CertLast], [tbl-1-2-Estaciones];