I need help with the following problem.
Example
Cell H13 is either left blank or has a number 1,2,3,4,5,6,7,8,9 or 10
I need the formula to return the following results
If H13 is blank return a blank cell
If H13 is 1,2,3,4,5,6,7,8, or 9 return "SEE GE TOTALS"
If H13 is 10 return "SEE SEDGWICK TOTALS"
Thanks in advance of your help!
=IF(H13="","",IF(OR(H13={1,2,3,4,5,6,7,8,9}),"SEE GE TOTALS","SE SEDGWICK
TOTALS"))
> I need help with the following problem.
> Example
[quoted text clipped - 5 lines]
>
> Thanks in advance of your help!
danlinksman - 18 Mar 2008 23:25 GMT
Perfect, Thanks for the help!!!
> =IF(H13="","",IF(OR(H13={1,2,3,4,5,6,7,8,9}),"SEE GE TOTALS","SE SEDGWICK
> TOTALS"))
[quoted text clipped - 8 lines]
> >
> > Thanks in advance of your help!
Teethless mama - 19 Mar 2008 02:33 GMT
You're welcome!
> Perfect, Thanks for the help!!!
>
[quoted text clipped - 10 lines]
> > >
> > > Thanks in advance of your help!
danlinksman - 18 Mar 2008 23:26 GMT
Perfect,
Thanks for the help
> =IF(H13="","",IF(OR(H13={1,2,3,4,5,6,7,8,9}),"SEE GE TOTALS","SE SEDGWICK
> TOTALS"))
[quoted text clipped - 8 lines]
> >
> > Thanks in advance of your help!
try
=IF(H3="","","See "& IF(H3>9,"Sedgwick","ge")& " totals")

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
>I need help with the following problem.
> Example
[quoted text clipped - 5 lines]
>
> Thanks in advance of your help!