Help with if statement.....

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

Guest

I am trying to create a time sheet for the 15th of the month through the end.
I have an empty column for the 31st (S). I want this header (S13) to be blank
if cell R7 does not contain */31/*. If R7 does contain */31/* I want the date
displayed in S13. Is this possible?
 
The equation that I am trying (that is not working) in S13 is:
=IF(R7=*/31/*,=R7,"")
 
Hi Walter

Assuming R7 holds true Excel dates, then
=IF(DAY(R7)=31,R7,"")

Regards

Roger Govier
 
You Rock! Thanks sooo much!

Roger Govier said:
Hi Walter

Assuming R7 holds true Excel dates, then
=IF(DAY(R7)=31,R7,"")

Regards

Roger Govier
 

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