ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Find / Compare Text in 2 different cells (https://www.excelbanter.com/excel-discussion-misc-queries/163989-find-compare-text-2-different-cells.html)

nastech

Find / Compare Text in 2 different cells
 
hi, am trying to test if left 2 characters in 1 cell, is equal string of
characters in another cell. e.g.:

Cell A5: F00
Cell $A$3: A0 B0 C0 D0 E0 F0

Problem: does the left 2 characters "F0" exist in cell $A$3
thanks.....

Chip Pearson

Find / Compare Text in 2 different cells
 
Try

=NOT(ISERROR(FIND(LEFT(A5,2),A3)))

--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)

"nastech" wrote in message
...
hi, am trying to test if left 2 characters in 1 cell, is equal string of
characters in another cell. e.g.:

Cell A5: F00
Cell $A$3: A0 B0 C0 D0 E0 F0

Problem: does the left 2 characters "F0" exist in cell $A$3
thanks.....



Dave Peterson

Find / Compare Text in 2 different cells
 
Or equivalently:
=isnumber(FIND(LEFT(A5,2),A3))

And to the OP.

=find() is case-sensitive. If you don't care about the difference between F0
and f0, you can use =search() instead of =find().


Chip Pearson wrote:

Try

=NOT(ISERROR(FIND(LEFT(A5,2),A3)))

--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)

"nastech" wrote in message
...
hi, am trying to test if left 2 characters in 1 cell, is equal string of
characters in another cell. e.g.:

Cell A5: F00
Cell $A$3: A0 B0 C0 D0 E0 F0

Problem: does the left 2 characters "F0" exist in cell $A$3
thanks.....


--

Dave Peterson


All times are GMT +1. The time now is 07:33 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com