due date function

G

Guest

I try to make function for due payment. When I made copy file and then drag
down the formula and it's succed. But for the cell that I not fill yet has
due date also.
How to make that cell became 0 (zero) if not fill the cell yet.

example :

A1 A2
19/8/05 =A1+30
- 30/01/00
- 30/01/00

Thanks

Lando
 
E

Erasmus Bowen

=IF(C5=""; "" ;C5+30)

Explanation detail
if ([logical test] c5 equals ""; then [result if true] ""; else [result if
false] c5+30)

Explanation brief
if c5 equals "" then "" else c5+30
HTH
Erasmus
 
B

Bob Phillips

Do you really just want to add 30 days. That will be moving about all over
the place with months?

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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