> It's already password protected. I was on vacation, she was filling in for
> me and on the second or third day she forgot to save the master as a new
[quoted text clipped - 16 lines]
> > > messages or not the result I wanted. I would appreciate any help or a better
> > > suggestion to deal with problem. Thanks.
=IF(S163<=0,"ENTER DATE, SAVE AS","")
This is what I came up with as a temporary fix before I posted here. Your
formula, although I don't understand it, gave me the idea to post a revision
of my original formula in a blank spot by the name of each shift, so the
message would appear in the immediate line of sight. Thanks for your help.
> =IF(OR(R110<>"", R119<>"", R128<>"", R137<>""),"SAVE AS","")
>
[quoted text clipped - 19 lines]
> > > > messages or not the result I wanted. I would appreciate any help or a better
> > > > suggestion to deal with problem. Thanks.
JMB - 30 Jun 2006 21:46 GMT
I'm glad it gave you some ideas. The OR function will return TRUE if any of
the conditions inside the ( ) are true, otherwise FALSE. The entire OR
statement is the first argument for the IF function. There is a great deal
of flexibility in nesting functions in this manner, they just cannot exceed 7
levels and must return the correct data type (in this case it has to be
TRUE/FALSE since that is what is expected for the first argument of the IF
function).
OR(R110<>"", R119<>"", R128<>"", R137<>"") evaluates to TRUE/FALSE
S163<=0 also will evaluate to TRUE/FALSE. As long as the result is boolean
(TRUE or FALSE) it does not matter if it is the result of a conditional
statement (using =, <, >, or <> operators) or is just the return value of
another function (such as OR, AND, the various IS functions, etc).
> =IF(S163<=0,"ENTER DATE, SAVE AS","")
> This is what I came up with as a temporary fix before I posted here. Your
[quoted text clipped - 25 lines]
> > > > > messages or not the result I wanted. I would appreciate any help or a better
> > > > > suggestion to deal with problem. Thanks.
TammyS - 30 Jun 2006 23:27 GMT
Thanks for the explanation. I enjoy the challenge of putting together a
formula that actually works but it can be VERY frustrating.
> I'm glad it gave you some ideas. The OR function will return TRUE if any of
> the conditions inside the ( ) are true, otherwise FALSE. The entire OR
[quoted text clipped - 40 lines]
> > > > > > messages or not the result I wanted. I would appreciate any help or a better
> > > > > > suggestion to deal with problem. Thanks.