count the number of days

G

Guest

I need a query that will count the number of days an account is late I have a
column with the date, how do I count number of day from the date in column to
present in different column?

Thanks Octet
 
G

Guest

Thank Karl that worke but there is a - infront of each day -10 -25 -30
how do i reove the - ?

KARL DEWEY said:
DateDiff("d", Date(), [YourDateField])
--
KARL DEWEY
Build a little - Test a little


Octet32 said:
I need a query that will count the number of days an account is late I have a
column with the date, how do I count number of day from the date in column to
present in different column?

Thanks Octet
 
M

Michel Walsh

try:

DateDiff("d", [YourDateField], Date() )



Vanderghast, Access MVP



Octet32 said:
Thank Karl that worke but there is a - infront of each
-10 -25 -30
how do i reove the - ?

KARL DEWEY said:
DateDiff("d", Date(), [YourDateField])
--
KARL DEWEY
Build a little - Test a little


Octet32 said:
I need a query that will count the number of days an account is late I
have a
column with the date, how do I count number of day from the date in
column to
present in different column?

Thanks Octet
 
G

Guest

Thanks thats it.

Michel Walsh said:
try:

DateDiff("d", [YourDateField], Date() )



Vanderghast, Access MVP



Octet32 said:
Thank Karl that worke but there is a - infront of each
-10 -25 -30
how do i reove the - ?

KARL DEWEY said:
DateDiff("d", Date(), [YourDateField])
--
KARL DEWEY
Build a little - Test a little


:

I need a query that will count the number of days an account is late I
have a
column with the date, how do I count number of day from the date in
column to
present in different column?

Thanks Octet
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top