Cell / Date Formatting Question when result = -0-

  • Thread starter Thread starter seve
  • Start date Start date
S

seve

Please help,

I am using this formula to post a date.

=IF(master!T3>0,master!S3,"")

When the value is a date...no problem.

When Master sheet Cell s3 has no value, the result is

01/00/00

How can I change this?
Is there a custom date format to show a "-"?

Many thanks.
 
Try this:

=IF(AND(master!T3>0,master!S3>0),master!S3,"")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


Please help,

I am using this formula to post a date.

=IF(master!T3>0,master!S3,"")

When the value is a date...no problem.

When Master sheet Cell s3 has no value, the result is

01/00/00

How can I change this?
Is there a custom date format to show a "-"?

Many thanks.
 
Please help,

I am using this formula to post a date.

=IF(master!T3>0,master!S3,"")

When the value is a date...no problem.

When Master sheet Cell s3 has no value, the result is

01/00/00

How can I change this?
Is there a custom date format to show a "-"?

Many thanks.


mm/dd/yy;;;

will only show a result if there is a value >0 (or an error).




--ron
 

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

Similar Threads


Back
Top