search certain part of cell

Jewelzzz00

New Member
Joined
Feb 3, 2010
Messages
20
http://lh3.ggpht.com/_caK9XMuXnSw/S2m3s9teApI/AAAAAAAACtI/XIU7LTqAzdg/s800/SCREENSHOT.JPG
A8A7SWGnHkpqFZaUnjxIXw
A8A7SWGnHkpqFZaUnjxIXw

<a href="http://picasaweb.google.com/lh/photo/A8A7SWGnHkpqFZaUnjxIXw?authkey=Gv1sRgCJbSs4a3h7PnRw&feat=embedwebsite"><img src="http://lh3.ggpht.com/_caK9XMuXnSw/S2m3s9teApI/AAAAAAAACtI/XIU7LTqAzdg/s800/SCREENSHOT.JPG" /></a>

i have a array table

all the rows of data get a unique file number , no duplicates.

the file number format is 1.01, or 241.00, or 5132.03,etc.

all numbers to the left of the period symbol are "file info" reference
all numbers to the right of the period symbol are "bills" found inside the file #.
there can be any amount of file #'s, always starting from 1 thru as many as there can be (apprx. thousands of files). and the bills can be from .00 thru .99

my search field ($r$9), need to search or find only the exact match to the left of the period.

NEED to search for file 1, i need the array table to kick back only the file numbers 1.01 and 1.65, not 241.00 not 3.01.

how can i search only the text before the period to the left and exactly what is entered into my search box??

please help.
 
Last edited:

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
I don't know how you are searching, but you can get the number before the period with:

=INT(B12)

and the number after the period with:

=MOD(B12,1)
 
Upvote 0
{=IFERROR(INDEX(FILENUM,SMALL(IF(ISNUMBER(SEARCH($R$9,FILENUM)),ROW(DATA)-MIN(ROW(DATA))+1,""),ROW(DATA)-MIN(ROW(DATA))+1),COLUMN(DATA)-MIN(COLUMN(DATA))+1),"")}

this is my search, located in the above ,

IF(ISNUMBER(SEARCH($R$9,FILENUM)


? add the INT()

{=IFERROR(INDEX(FILENUM,SMALL(IF(ISNUMBER(SEARCH(INT($R$9),FILENUM)),ROW(DATA)-MIN(ROW(DATA))+1,""),ROW(DATA)-MIN(ROW(DATA))+1),COLUMN(DATA)-MIN(COLUMN(DATA))+1),"")}


says too few arguements

thank you so much,
 
Upvote 0
I don't know how you are searching, but you can get the number before the period with:

=INT(B12)

and the number after the period with:

=MOD(B12,1)



ok i got the formula to validate,

=IFERROR(INDEX(FILENUM,SMALL(IF(ISNUMBER(SEARCH($R$9,INT(FILENUM))),ROW(DATA)-MIN(ROW(DATA))+1,""),ROW(DATA)-MIN(ROW(DATA))+1),COLUMN(DATA)-MIN(COLUMN(DATA))+1),"")

but 241 still, comes up in the result.

can "", or *, or any other symbols help return the value "1", exact case
 
Upvote 0
What about swapping the arguments for SEARCH?

ISNUMBER(SEARCH(INT(FILENUM),$R$9))


your great!

solution

=IFERROR(INDEX(FILENUM,SMALL(IF(ISNUMBER(SEARCH(INT(FILENUM),$R$9)),ROW(DATA)-MIN(ROW(DATA))+1,""),ROW(DATA)-MIN(ROW(DATA))+1),COLUMN(DATA)-MIN(COLUMN(DATA))+1),"")

:biggrin:
 
Upvote 0
your great!

solution

=IFERROR(INDEX(FILENUM,SMALL(IF(ISNUMBER(SEARCH(INT(FILENUM),$R$9)),ROW(DATA)-MIN(ROW(DATA))+1,""),ROW(DATA)-MIN(ROW(DATA))+1),COLUMN(DATA)-MIN(COLUMN(DATA))+1),"")

:biggrin:



wow so close, i tested the formula.

if you search 241 , u get the result 1.01 and 1.65 and 241.00.

any ideas?
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top