arlelua
MIS
- Mar 21, 2011
- 3
I have the next query
SELECT tbfacturas.dsNumeroFactura, tbfacturas.psCliente, tbClientes.dsNombreRazon, tbfacturas.ddFecha, SUM (tbfacturas.dsSubtotal) as Subtotal
FROM tbFacturas INNER JOIN tbClientes ON tbFacturas.psCliente = tbClientes.psCliente
WHERE (tbFacturas.ddFecha >= #" & ddFecha_Inicio & "#) AND (tbFacturas.ddFecha <= #" & ldFecha_Fin "#)
GROUP BY tbFacturas.dsNumeroFactura,tbFacturas.psCliente,tbFacturas.ddFecha,tbClientes.dsNombreRazon
when my Date (ddFecha_Inicio or ldFecha_Fin ) are in Janaury, it works but when I put Febraury on it, I have this error,
Type mismatch on Access, (the message is in spanish).
Please Help Me if need more code please tell me
SELECT tbfacturas.dsNumeroFactura, tbfacturas.psCliente, tbClientes.dsNombreRazon, tbfacturas.ddFecha, SUM (tbfacturas.dsSubtotal) as Subtotal
FROM tbFacturas INNER JOIN tbClientes ON tbFacturas.psCliente = tbClientes.psCliente
WHERE (tbFacturas.ddFecha >= #" & ddFecha_Inicio & "#) AND (tbFacturas.ddFecha <= #" & ldFecha_Fin "#)
GROUP BY tbFacturas.dsNumeroFactura,tbFacturas.psCliente,tbFacturas.ddFecha,tbClientes.dsNombreRazon
when my Date (ddFecha_Inicio or ldFecha_Fin ) are in Janaury, it works but when I put Febraury on it, I have this error,
Type mismatch on Access, (the message is in spanish).
Please Help Me if need more code please tell me