Dear all
What is the difference between
and
both function returned the same value but I need the accurate one. I am afraid in future to get different values.
What does the # really do ?
receipttime data type is date (long time).
Any comments would be appreciated.
THANK YOU IN ADVANCE
REGARDS
What is the difference between
Code:
=nz(DSum("Invoiceamount","invoices","[customerid]=" & [CustomerID] & "and" & "[credit]= " & True & " and [invoicetime]<#" & [receipttime] & "#"),0)
Code:
=nz(DSum("Invoiceamount","invoices","[customerid]=" & [CustomerID] & "and" & "[credit]= " & True & " and [invoicetime]<" & [receipttime] & ""),0)
What does the # really do ?
receipttime data type is date (long time).
Any comments would be appreciated.
THANK YOU IN ADVANCE
REGARDS
Comment