A
Amber
How can I express the following within a function?
begins with
contains
ends with
begins with
contains
ends with
How can I express the following within a function?
begins with
contains
ends with
begins with
=LEFT(A1,3)="XXX"
=ISNUMBER(SEARCH("abc",A1))
ends with
How can I express the following within a function?
begins with
contains
ends with
T. Valko said:Maybe something like this:
=SUMPRODUCT(--(LEFT(A1:A10,3)<>"600"),B1:B10)
Biff