Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Luke
 
Posts: n/a
Default problem with =isnumber(match(right(...

=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I can't get
anything but zero. Here's a sample of sheet.

A B C D E F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

I doubt it. MATCH doesn't like 2D.

Try this

=COUNTIF($A$6:$E$10,RIGHT(F15,2)+0)

--
HTH

Bob Phillips

"Luke" wrote in message
...
=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I can't get
anything but zero. Here's a sample of sheet.

A B C D E

F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke



  #3   Report Post  
Luke
 
Posts: n/a
Default

Okay that worked but I only got a "1" where true is the case. I am looking
for a specific result, of which I didn't mention... Just thought the formula
would automatically do it I guess. I digress.
Let's do this:
A B C D E
F G
50 45 48 49 55 752 695
60 65 58 59 66 0 2596
70 75 68 69 77 1595 215
80 85 78 79 88 7355 795
90 95 98 89 99 7 638

If "F" column (match right 2 digits with any of A:E) then display G
Does that make since. sorry I left out the details Bob.
Thanks
Luke

"Bob Phillips" wrote:

I doubt it. MATCH doesn't like 2D.

Try this

=COUNTIF($A$6:$E$10,RIGHT(F15,2)+0)

--
HTH

Bob Phillips

"Luke" wrote in message
...
=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I can't get
anything but zero. Here's a sample of sheet.

A B C D E

F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke




  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

Is this what you mean?

=IF(COUNTIF(A$6:E$10,RIGHT(F6,2)+0),G6,"")

--
HTH

Bob Phillips

"Luke" wrote in message
...
Okay that worked but I only got a "1" where true is the case. I am

looking
for a specific result, of which I didn't mention... Just thought the

formula
would automatically do it I guess. I digress.
Let's do this:
A B C D E
F G
50 45 48 49 55 752 695
60 65 58 59 66 0 2596
70 75 68 69 77 1595 215
80 85 78 79 88 7355 795
90 95 98 89 99 7 638

If "F" column (match right 2 digits with any of A:E) then display G
Does that make since. sorry I left out the details Bob.
Thanks
Luke

"Bob Phillips" wrote:

I doubt it. MATCH doesn't like 2D.

Try this

=COUNTIF($A$6:$E$10,RIGHT(F15,2)+0)

--
HTH

Bob Phillips

"Luke" wrote in message
...
=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I can't

get
anything but zero. Here's a sample of sheet.

A B C D E

F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke






  #5   Report Post  
Luke
 
Posts: n/a
Default

Yes Bob, adding the absolutes for the array $A$6:$E$10 was all it needed. I
works Great.
Sorry I took so long to answer.. Had to leave for work.
Thanks again
Luke

"Bob Phillips" wrote:

Is this what you mean?

=IF(COUNTIF(A$6:E$10,RIGHT(F6,2)+0),G6,"")

--
HTH

Bob Phillips

"Luke" wrote in message
...
Okay that worked but I only got a "1" where true is the case. I am

looking
for a specific result, of which I didn't mention... Just thought the

formula
would automatically do it I guess. I digress.
Let's do this:
A B C D E
F G
50 45 48 49 55 752 695
60 65 58 59 66 0 2596
70 75 68 69 77 1595 215
80 85 78 79 88 7355 795
90 95 98 89 99 7 638

If "F" column (match right 2 digits with any of A:E) then display G
Does that make since. sorry I left out the details Bob.
Thanks
Luke

"Bob Phillips" wrote:

I doubt it. MATCH doesn't like 2D.

Try this

=COUNTIF($A$6:$E$10,RIGHT(F15,2)+0)

--
HTH

Bob Phillips

"Luke" wrote in message
...
=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I can't

get
anything but zero. Here's a sample of sheet.

A B C D E
F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke








  #6   Report Post  
Bob Phillips
 
Posts: n/a
Default

No sweat. Thanks for letting us know.

--
HTH

Bob Phillips

"Luke" wrote in message
...
Yes Bob, adding the absolutes for the array $A$6:$E$10 was all it needed.

I
works Great.
Sorry I took so long to answer.. Had to leave for work.
Thanks again
Luke

"Bob Phillips" wrote:

Is this what you mean?

=IF(COUNTIF(A$6:E$10,RIGHT(F6,2)+0),G6,"")

--
HTH

Bob Phillips

"Luke" wrote in message
...
Okay that worked but I only got a "1" where true is the case. I am

looking
for a specific result, of which I didn't mention... Just thought the

formula
would automatically do it I guess. I digress.
Let's do this:
A B C D E
F G
50 45 48 49 55 752 695
60 65 58 59 66 0 2596
70 75 68 69 77 1595 215
80 85 78 79 88 7355 795
90 95 98 89 99 7 638

If "F" column (match right 2 digits with any of A:E) then display G
Does that make since. sorry I left out the details Bob.
Thanks
Luke

"Bob Phillips" wrote:

I doubt it. MATCH doesn't like 2D.

Try this

=COUNTIF($A$6:$E$10,RIGHT(F15,2)+0)

--
HTH

Bob Phillips

"Luke" wrote in message
...
=ISNUMBER(MATCH(RIGHT(F15,2)+0,$A$6:$E$10,0))+0

The formula above worked, I thought, but now for some reason I

can't
get
anything but zero. Here's a sample of sheet.

A B C D E
F
50 45 48 49 55 752
60 65 58 59 66 0
70 75 68 69 77 1595
80 85 78 79 88 7355
90 95 98 89 99 7

Any help would be great Thank you!
Luke








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
Problem With Reference Update Egon Excel Worksheet Functions 17 July 16th 05 05:45 AM
Excel Display Problem Bill Martin -- (Remove NOSPAM from address) Excel Discussion (Misc queries) 0 April 19th 05 05:25 PM
Freeze Pane problem in shared workbooks JM Excel Discussion (Misc queries) 1 February 1st 05 12:04 AM
Row Autofit problem Excel 2003 Matthias Klaey Excel Discussion (Misc queries) 0 January 19th 05 05:33 PM
Paper Tray selection Problem, Michael Hoffmann Excel Discussion (Misc queries) 4 December 3rd 04 09:08 PM


All times are GMT +1. The time now is 08:25 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"