help with if statement

G

Guest

how do i translate this into a formula

if d47 equals blank then blank else if d48 equals blank then
if (today - d47) > 89 then e47 else 0, if d48 is not blank then if(d48 -
d47)>89 then e47 else 0

basically if there is no date in d47 then 0
if there is a date in d47 and no date in d48 then i want
it to return the value of e47 if the difference between d47 and today is
greater than 89 days if its less than 89 days then i want it to return 0. if
d48 does has a date then if the difference between d48 and d47 is greater
than 89 than return the value of e47 otherwise 0.
 
A

Arvi Laanemets

Hi

=IF(D47<>"",((D48="")*(TODAY()>D47+89)+(D48<>"")*(D48>D47+89))*E47,"")


Arvi Laanemets
 

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