Estou tentando fazer a soma de Contas A Receber, Contas Vencidas e Contas A vencer em 3 dias.
O código abaixo:
- Código:
areceber = Format(DSum("ValorParcela", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao='A Receber'"), "#,##0.00")
contarareceber = DCount("CodReceita", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao = 'A Receber'")
vencido = Format(DSum("ValorParcela", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao='A Receber' and DataVencimento>#" & Date & "#"), "#,##0.00")
contarvencido = DCount("ValorParcela", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao='A Receber' and DataVencimento>#" & Date & "#")
areceber3 = Format(DSum("ValorParcela", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao='A Receber' and DataVencimento=DataVencimento + 3"), "#,##0.00")
contarareceber3 = DCount("ValorParcela", "tblReceitas", "CodCliente=" & Me.txtCodCliente & " and Situacao='A Receber' and DataVencimento=DataVencimento + 3") 'DLookup("Valor", "tb_moeda", "Data=(Date()-1)")