How do I show info only in cells used

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

IF(X15="paid","",IF((TODAY()-C10)<14, "Overdue", "PAID"))

I have used the formula above to show if an invoice is out of date/unpaid,
however I have dragged the formula down into cells that are currently empty
and they are showing Overdue... How do I make these cells appear blank until
the cells have inf. in them.
 
I am not clear on your rules here. Clearly, If X15 says paid, then there is
nothing to output, but is C10 a due date? If so you will get Overdue when
the date is in the future, which seems perverse. This seems a better fit to
me

=IF(X15="paid","",IF(C10="","",IF(TODAY()<C14,"",IF(TODAY()-C10>14,
"Overdue", "Due"))))


--

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

Back
Top