View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Need help with a lookup or if statement

You don't need =TRUE in your IF statement.

You could simplify
=if(or(left(a1,3)="Sam",left(a1,3)="Ace")=TRUE,B1, 0)
to
=if(or(left(a1,3)="Sam",left(a1,3)="Ace"),B1,0)
or to
=if(or(left(A1,3)={"Sam","Ace"}),B1,0)
--
David Biddulph


cm wrote:
TRY THIS for c1:

=if(or(left(a1,3)="Sam",left(a1,3)="Ace")=TRUE,B1, 0)

A B C
Samson 0.5 0.5
Samson Co. 0.3 0.3
Ace 0.7 0.7
Ace Co. 0.2 0.2
Peterson 0.8 0
Derby 0.6 0
Samson 0.9 0.9
Samson Co. 0.4 0.4
Ace 0.1 0.1
Ace Co. 0.3 0.3
Peterson 0.2 0
Derby 0.5 0

Entities:
Samson
Ace

If Col. A is equal to or starts with one of the names in the range
'Entities', I want Col. C to return the contents of Col. B, and if
hot, to return '0'. Any suggestions? Thanks!