Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I applied the following formula to find the matching and write the data of
the corresponding next cell. Sheet1. the column C:C has custom format 000-000 having the data like this 123-456 12 001-789 11 313-245 13 456-779 16 084-321 18 IF(ISNA(MATCH(D5,Sheet1!C:C,0)),"Not exist",Sheet1!D2). the matching is working but after, it is not writing corresponding data from D2 value. It will put the data from skipping two row. Please help Active sheet The column B1 has the following data ABC123456 DSD001789 HGH084321 YYY343434 like this 7500 record exist. With thanks Pol |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With data in cell B1 of activesheet;apply the below formula in cell C1 and
copy down as required...Its just the reverse what you have asked in the other post.... =IF(ISNA(MATCH(TEXT(MID(B1,4,10),"000-000"),Sheet1!C:C,0)),"Not", INDEX(Sheet1!D:D,MATCH(TEXT(MID(B1,4,10),"000-000"),Sheet1!C:C,0))) -- Jacob (MVP - Excel) "pol" wrote: I applied the following formula to find the matching and write the data of the corresponding next cell. Sheet1. the column C:C has custom format 000-000 having the data like this 123-456 12 001-789 11 313-245 13 456-779 16 084-321 18 IF(ISNA(MATCH(D5,Sheet1!C:C,0)),"Not exist",Sheet1!D2). the matching is working but after, it is not writing corresponding data from D2 value. It will put the data from skipping two row. Please help Active sheet The column B1 has the following data ABC123456 DSD001789 HGH084321 YYY343434 like this 7500 record exist. With thanks Pol |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
IF(ISNA(MATCH(D2,Sheet1!C:C,0)),"Not exist",Sheet1!D2).
If active sheet row in Activesheet!D3 and matching row found in sheet1!C6, So I want to write corresponding sheet1!D6. Please can you advice me. So I want to chage the equation IF(ISNA(MATCH(D2,Sheet1!C:C,0)),"Not exist",Sheet1!D2). change to IF(ISNA(MATCH(D2,Sheet1!C:C,0)),"Not exist",Sheet1!Foundrow). Please can you advice me . That would be very help that formula is working but only one problem "pol" wrote: I applied the following formula to find the matching and write the data of the corresponding next cell. Sheet1. the column C:C has custom format 000-000 having the data like this 123-456 12 001-789 11 313-245 13 456-779 16 084-321 18 IF(ISNA(MATCH(D5,Sheet1!C:C,0)),"Not exist",Sheet1!D2). the matching is working but after, it is not writing corresponding data from D2 value. It will put the data from skipping two row. Please help Active sheet The column B1 has the following data ABC123456 DSD001789 HGH084321 YYY343434 like this 7500 record exist. With thanks Pol |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Column headings - urgent help needed please | Excel Discussion (Misc queries) | |||
Formula to write Calendar dates excluding weekends - urgent pleas | Excel Discussion (Misc queries) | |||
*** Urgent help formula * Need to sum values in a column if all .. | Excel Worksheet Functions | |||
find a specific value in a column and write another column | Excel Discussion (Misc queries) | |||
Urgent Problem with Number Column | New Users to Excel |