G
Guest
I need to subtract today’s date from 2/1/2007.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
pgarcia said:Sorry, it's a form, but I did find out how to do it.
Expr1: DateDiff("d",[Transaction_Date],Now())
But now that I have that. How can I do the following:
=IIF(AND([Expr1:]>30,[Expr1:]<=60),[Amount Due Remaining/Applied],0)
I'm a lot better ai Excel
MikeJohnB said:You don't say what you are using to perform the calc (Form, Query or Report)?
For a unbound textBox on a form or report
Select the properties of a textbox on a form or a report and type in the
Control Source row
=Date()-#02/01/2007#
hth Mike B
--
An Engineers Prayer:
At the very end of the day,
when all else fails,
you have tried all,
you have shouted at and blamed the innocent,
and asked everyone you know,
READ THE INSTRUCTION MANUAL.
Expr1: DateDiff("d",[Transaction_Date],Now())
But now that I have that, how can I do the following?
=IIF(AND([Expr1]>30,Expr1<=60),[Amount Due Remaining/Applied],0)
MikeJohnB said:try this one
=IIf([Expr1]>30,IIf([Expr1]<=60,[Amount Due Remaining/Applied],0),0)
Again hth????
Best Regards Mike B
--
An Engineers Prayer:
At the very end of the day,
when all else fails,
you have tried all,
you have shouted at and blamed the innocent,
and asked everyone you know,
READ THE INSTRUCTION MANUAL.
pgarcia said:Sorry, it's a form, but I did find out how to do it.
Expr1: DateDiff("d",[Transaction_Date],Now())
But now that I have that. How can I do the following:
=IIF(AND([Expr1:]>30,[Expr1:]<=60),[Amount Due Remaining/Applied],0)
I'm a lot better ai Excel
MikeJohnB said:You don't say what you are using to perform the calc (Form, Query or Report)?
For a unbound textBox on a form or report
Select the properties of a textbox on a form or a report and type in the
Control Source row
=Date()-#02/01/2007#
hth Mike B
--
An Engineers Prayer:
At the very end of the day,
when all else fails,
you have tried all,
you have shouted at and blamed the innocent,
and asked everyone you know,
READ THE INSTRUCTION MANUAL.
:
I need to subtract today’s date from 2/1/2007.
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.