Ecxel function to test number range and return data in a cell

MarleneVorster

New Member
Joined
Aug 19, 2018
Messages
3
I need to test a postal code in one sheet to a range of codes in another sheet and return the data in a specified cell.

EG: Client's postal code is 0001, test against the Postal Code ranges in col A and return the relevant Province in col B.

Postal codesProvince
0001–0299Gauteng
0300–0499North West
0500–0698Limpopo
0699–0999Limpopo
1000–1399Mpumalanga
1400–1699Gauteng

<colgroup><col style="mso-width-source:userset;mso-width-alt:3437;width:71pt" width="94"> <col style="mso-width-source:userset;mso-width-alt:8777;width:180pt" width="240"> </colgroup><tbody>
</tbody>

I have tried If And functions without success. Any suggestions please.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Welcome to the board.

As an array formula (type the formula in, then press CTRL+SHIFT+ENTER), this works:
Code:
=INDEX($B$1:$B$6,MATCH(VALUE($D$1),VALUE(LEFT($A$1:$A$6,4)),1))
However, you'll need to adjust to match your sheet names and ranges (unable to guess what they are from the information in the post)
 
Upvote 0
Welcome to the forum!

Below is a user-defined function (UDF) that you can try along with an example of its use and instructions on how to install it in your workbook. The lookup table you posted has been given a defined name of "LkUpTable" which is for the range A2:B7 in the example.

Excel Workbook
ABCDE
1Postal codesProvinceClient CodeProvince
200010299Gauteng0001Gauteng
303000499North West0319North West
405000698Limpopo1698Gauteng
506990999Limpopo1700#VALUE !
610001399Mpumalanga#VALUE !
714001699Gauteng0501Limpopo
80700Limpopo
Sheet1



To install the UDF:
1. With your workbook active press Alt and F11 keys. This will open the VBE window.
2. In the project tree on the left of the VBE window, find your project and click on it.
3. On the VBE menu: Insert>Module
4. Copy the UDF from your browser window and paste it into the white space in the VBE window.
5. Close the VBE window and Save the workbook. If you are using Excel 2007 or a later version do a SaveAs and save it as a macro-enabled workbook (.xlsm file extension).
6. Use the UDF as you would any native Excel function.
7. Make sure you have enabled macros whenever you open the file or the code will not run.
Code:
Function Province(S As Variant) As String
Dim c As Range
If S < 1 Or S > 1699 Then
    Province = CVErr(xlErrValue)
    Exit Function
End If
For Each c In Range("LkUpTable").Columns(1).Cells
    If S >= Val(Split(c, Chr(150))(0)) And S <= Val(Split(c, Chr(150))(1)) Then
        Province = c.Offset(0, 1)
        Exit Function
    End If
Next c
End Function
Note that empty cells or cells with a code outside the table values cause the UDF to return the #VALUE ! error.
 
Upvote 0
This formula should also work...

=IFERROR(LOOKUP(D2,{1,300,500,699,1000,1400,1700},{"Gauteng","North West","Limpopo","Limpopo","Mpumalanga","Gauteng",""}),"")
 
Upvote 0
Hi,

If there's a chance the Client Post Code will not be in the Table range, use F2 formula (Change "No Match" to "" or whatever you like); otherwise use E2 formula, either formula copied down:


Book1
ABCDEF
1Postal codesProvinceClient Post CodeProvince
200010299Gauteng0001GautengGauteng
303000499North West0319North WestNorth West
405000698Limpopo1698GautengGauteng
506990999Limpopo0501LimpopoLimpopo
610001399Mpumalanga0700LimpopoLimpopo
714001699Gauteng#N/ANo Match
81700GautengNo Match
Sheet192
Cell Formulas
RangeFormula
E2=LOOKUP(D2+0,LEFT(A$2:A$7,4)+0,B$2:B$7)
F2=IF(OR(D2+0=0,D2+0>RIGHT(A$7,4)+0),"No Match",LOOKUP(D2+0,LEFT(A$2:A$7,4)+0,B$2:B$7))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

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