Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
pol pol is offline
external usenet poster
 
Posts: 129
Default Please help to search a custom format

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Please help to search a custom format

In cell C1 apply the below formula and copy down as required.

=IF(ISNA(MATCH(TEXT(MID(B1,4,10),"000-000"),A:A,0)),"","Exist in Column A")


--
Jacob (MVP - Excel)


"pol" wrote:

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol

  #3   Report Post  
Posted to microsoft.public.excel.misc
pol pol is offline
external usenet poster
 
Posts: 129
Default Please help to search a custom format

Thanks for the help . It is working but still have small problem. I applied
you formula as follows

=IF(ISNA(MATCH(D5,Sheet1!C:C,0)),"Not",Sheet1!A6)

If is found I want to write the corresponding data on the next column. Here
if the data is found in sheet1!A4 column , the output data will write from
A6. I want to write the data of the next cell of the same row

please advice



"Jacob Skaria" wrote:

In cell C1 apply the below formula and copy down as required.

=IF(ISNA(MATCH(TEXT(MID(B1,4,10),"000-000"),A:A,0)),"","Exist in Column A")


--
Jacob (MVP - Excel)


"pol" wrote:

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Please help to search a custom format

A bit confused with the formula you have posted...Need more info..

--
Jacob (MVP - Excel)


"pol" wrote:

Thanks for the help . It is working but still have small problem. I applied
you formula as follows

=IF(ISNA(MATCH(D5,Sheet1!C:C,0)),"Not",Sheet1!A6)

If is found I want to write the corresponding data on the next column. Here
if the data is found in sheet1!A4 column , the output data will write from
A6. I want to write the data of the next cell of the same row

please advice



"Jacob Skaria" wrote:

In cell C1 apply the below formula and copy down as required.

=IF(ISNA(MATCH(TEXT(MID(B1,4,10),"000-000"),A:A,0)),"","Exist in Column A")


--
Jacob (MVP - Excel)


"pol" wrote:

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol

  #5   Report Post  
Posted to microsoft.public.excel.misc
pol pol is offline
external usenet poster
 
Posts: 129
Default Please help to search a custom format

Ok.

I have two sheet.

Sheet1
Code Mapp
C D
301003 301-006
301005 739-245
301006 753-229
301007 739-247
301008 739-249
301009 802-435
301010 736-111

Sheet2
column D
301-006
000-050
000-051
000-052
753-229
000-056
000-060
000-061
000-070
000-072
000-075

Output
Sheet2
column D

301-006 301003
000-050 Not Exist
000-051 Not Exist
000-052 Not Exist
753-229 301006
000-056
000-060
000-061
000-070
000-072
000-075

Please advice me to use the function
IF(ISNA(MATCH(D2,Sheet1!D:D,0)),"Not",Sheet1!C2)

"pol" wrote:

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Please help to search a custom format

Apply the below formula in Sheet2 cell E1

=IF(ISNA(MATCH(D1,Sheet1!D:D,0)),"No",
INDEX(Sheet1!C:C,MATCH(D1,Sheet1!D:D,0)))

--
Jacob (MVP - Excel)


"pol" wrote:

Ok.

I have two sheet.

Sheet1
Code Mapp
C D
301003 301-006
301005 739-245
301006 753-229
301007 739-247
301008 739-249
301009 802-435
301010 736-111

Sheet2
column D
301-006
000-050
000-051
000-052
753-229
000-056
000-060
000-061
000-070
000-072
000-075

Output
Sheet2
column D

301-006 301003
000-050 Not Exist
000-051 Not Exist
000-052 Not Exist
753-229 301006
000-056
000-060
000-061
000-070
000-072
000-075

Please advice me to use the function
IF(ISNA(MATCH(D2,Sheet1!D:D,0)),"Not",Sheet1!C2)

"pol" wrote:

the column A1 has custom format 000-000 having the data like this
123-456
001-789
313-245
456-779
084-321

The column B1 has the following data
ABC123456
DSD001789
HGH084321
YYY343434

like this 7500 record exist. I want to find column B1 value (numeric ) in
Column A1. So ABC123456,DSD001789, HGH084321 exist in A1 . How I can search
that numeric part in column A1. Pls help . Is there any function to give in
formula bar.
or Is it possible to write CTR+F, CTRL V to find automatcially in ceach
cell. Please advice

With thanks
Pol

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with converting CUSTOM format/TEXT format to DATE format Deo Cleto Excel Worksheet Functions 6 June 2nd 09 08:14 PM
Format Cell as custom type but data doesn't display like I custom. ToMMie Excel Discussion (Misc queries) 6 September 11th 08 08:31 AM
Excel 2003. Custom format gets replaced by Special format. jasper New Users to Excel 0 September 1st 08 03:46 AM
Custom Cell format to mimic time format [email protected] Excel Discussion (Misc queries) 6 November 7th 06 09:17 PM
auto filter doesn't return cells containing the custom search wor. annelidae Excel Worksheet Functions 2 August 24th 06 02:07 AM


All times are GMT +1. The time now is 02:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"