Wild card issue with validation list

Audiology

Board Regular
Joined
Mar 4, 2009
Messages
171
I have a data validation formula as follows:

=OR(ISNUMBER(MATCH(H75, $AU$3:$AU$40, 0)), ISNUMBER(MATCH($AU$3:$AU$40, H75, 0)))

The filter works for everything but the wildcards. If I enter "#??" literally in cell H75, it passes. If I enter "#ie" in cell H75, it triggers an alert.

What am I doing wrong? (Excel 2010/Windows 7)

Thanks

the list includes: <table style="width: 64px; height: 418px;" border="0" cellpadding="0" cellspacing="0"><colgroup><col style="width:48pt" width="64"> </colgroup><tbody><tr style="mso-height-source:userset;height:13.15pt" height="17"> <td class="xl65" style="height:13.15pt;width:48pt" height="17" width="64">igh</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">a</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">ai</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">ay</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">au</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">e</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">ee</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">i</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">o</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td class="xl67" style="height:13.15pt;border-top:none" height="17">oa</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">oe</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">oi</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">#???</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">#??</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">oo</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">ou</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td class="xl67" style="height:13.15pt;border-top:none" height="17">oy</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">u</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">x</td> </tr> <tr style="mso-height-source:userset;height:12.75pt" height="17"> <td style="height:12.75pt;border-top:none" height="17">y</td> </tr> <tr style="mso-height-source:userset;height:13.15pt" height="17"> <td style="height:13.15pt;border-top:none" height="17">z

</td> </tr> </tbody></table>
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Maybe this

=OR(ISNUMBER(MATCH(H75,$AU$3:$AU$40,0)), SUM(IF(ISNUMBER(MATCH($AU$3:$AU$40,H75,0)),1)))

HTH

M.
 
Upvote 0
New wrinkle:

The wild card validation fix worked fine (Excel 2003).

I have had need to re-enter the data using copy/paste from one workbook to another using two open versions of excel 2010.

The validation formula no longer works with wild cards.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,682
Members
452,937
Latest member
Bhg1984

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