Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've got three columns in one worksheet with different codes:
Col A Col B Col C 91113 24 50 91114 25 50 I also have another three columns in a different worksheet with similar information. Col A Col B Col C 91113 24 50 91115 88 88 Can someone pls help me with the below IF function criteria If the all codes in Col A, B & C in worksheet 1 = Col A, B & C in worksheet 2 then label this "ok". If only codes in Col A & B in worksheet 1 = Col A & B in worksheet 2 then label this "partial". If codes in Col A & B in worksheet 1 does not equal Col A & B in worksheet 2 then label this "check". Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(AND(A1=Sheet2!A1,B1=Sheet2!B1,C1=Sheet2!C1),"o k",IF(AND(A1=Sheet2!A1,B1=Sheet2!B1),"partial","ch eck"))
Regards Trevor "missk" wrote in message ups.com... I've got three columns in one worksheet with different codes: Col A Col B Col C 91113 24 50 91114 25 50 I also have another three columns in a different worksheet with similar information. Col A Col B Col C 91113 24 50 91115 88 88 Can someone pls help me with the below IF function criteria If the all codes in Col A, B & C in worksheet 1 = Col A, B & C in worksheet 2 then label this "ok". If only codes in Col A & B in worksheet 1 = Col A & B in worksheet 2 then label this "partial". If codes in Col A & B in worksheet 1 does not equal Col A & B in worksheet 2 then label this "check". Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(AND(A1=Sheet2!A1,B1=Sheet2!B1),IF(C1=Sheet2!C1 ,"ok","partial"),"check")
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "missk" wrote in message ups.com... I've got three columns in one worksheet with different codes: Col A Col B Col C 91113 24 50 91114 25 50 I also have another three columns in a different worksheet with similar information. Col A Col B Col C 91113 24 50 91115 88 88 Can someone pls help me with the below IF function criteria If the all codes in Col A, B & C in worksheet 1 = Col A, B & C in worksheet 2 then label this "ok". If only codes in Col A & B in worksheet 1 = Col A & B in worksheet 2 then label this "partial". If codes in Col A & B in worksheet 1 does not equal Col A & B in worksheet 2 then label this "check". Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thankyou so much guys
|
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thankyou so much guys
|
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thankyou so much guys
|
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I think your News Reader has got hiccoughs ;-)
"missk" wrote in message oups.com... thankyou so much guys |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Adding a custom function to the default excel function list | Excel Programming | |||
User-Defined Function pre-empting Built-in Function? How to undo???? | Excel Programming |