Cell / Date Formatting Question when result = -0-

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.
 
R

RagDyeR

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.
 
R

Ron Rosenfeld

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
 
Top