tiered lookup

ajm

Well-known Member
Joined
Feb 5, 2003
Messages
2,008
Office Version
  1. 365
Platform
  1. Windows
folks, i am trying to match and compare two data sets to ensure we are charging the correct amount. One contains the rates charged for medical procedures (Rates) and the associated service fee charged for ancillary items, and the other contains patient level data (Patients) including fees and charges ;levied for their procedure. the common item is the procedure code. On the Rates sheet, the procedure codes can be grouped into bands (eg 12345 - 23456) or can be singular (eg 34567). To make things more interesting, there are a handful of procedure codes that are split into tiers according to the cost of the associated ancillary items.

For example, Patient A has had Procedure 34567 performed. It is a single rate procedure so a simple look up of that Procedure code on the Rate sheet is all that is required. Patient B has a more complex procedure performed with tiered ancillary costs. Procedure 12444, which cost $180. This attracts ancillary charges of 43%. Had it been the same procedure with less time involved, it would have been $140. This attracts ancillary charges of 40%. so, How do i do a lookup to take both the procedure bands on the Rate sheet and the tiered level of charge so that I get the correct level of ancillary per centage.

This is the data (the tiered procedure codes are in yellow):


Book1
ABCDEFGH
1FORMULAFORMULAFORMULA
2Patient NameMBS Item CodeItem Receipt AmountItem Service Fee AmountItem Service Fee GST AmountEff Service Chg %Register RateVARIANCE
3Patient 130064.216.051.60525%25%0%
4Patient 220000185.983.6558.365545%60%-15%
5Patient 31191064.216.051.60525%30%-5%
6Patient 41191526.613.31.3350%30%20%
7Patient 511925181.1581.51758.1517545%30%15%
8Patient 640075.518.8751.887525%25%0%
9Patient 71000031.2515.6251.562550%25%25%
Patients
Cell Formulas
RangeFormula
F3=D3/C3
F4=D4/C4
F5=D5/C5
F6=D6/C6
F7=D7/C7
F8=D8/C8
F9=D9/C9
G3=VLOOKUP(B3,RATES!ServiceFees,2,1)
G4=VLOOKUP(B4,RATES!ServiceFees,2,1)
G5=VLOOKUP(B5,RATES!ServiceFees,2,1)
G6=VLOOKUP(B6,RATES!ServiceFees,2,1)
G7=VLOOKUP(B7,RATES!ServiceFees,2,1)
G8=VLOOKUP(B8,RATES!ServiceFees,2,1)
G9=VLOOKUP(B9,RATES!ServiceFees,2,1)
H3=F3-G3
H4=F4-G4
H5=F5-G5
H6=F6-G6
H7=F7-G7
H8=F8-G8
H9=F9-G9
Named Ranges
NameRefers ToCells
ServiceFees=RATES!$F$4:$G$15
RATES!ServiceFees=RATES!$F$4:$G$15







Book1
ABCDEFG
3Professional AttendancesProfessional Attendances 
4Procedure 11 - 1079925%Description 1125%
5Procedure 210800 - 1094930%Description 21080030%
6Diagnostic Procedures and InvestigationsDiagnostic Procedures and Investigations  
7Procedure 311000 - 1169948%Description 31100048%
8Procedure 411700 - 1179950%Description 41170050%
9Procedure 511800 - 1189943%Description 51180043%
10Procedures 6 (< $150)11900 - 1199948%Description 61190048%
11Procedures 6 ($150 to $500)38%Description 71190038%
12Procedures 6 ($501 to $1000)60%Description 81190060%
13Procedures 6 (> $1001)30%Description 91190030%
14Procedure 1012202 - 1229960%Description 101220260%
15Procedure 1112300 - 1259960%Description 111230060%
RATES
Cell Formulas
RangeFormula
F3=IF(B3="","",IF(ISERROR(FIND(" - ",B3)),B3*1,LEFT(B3,FIND(" - ",B3))*1))
F4=IF(AND(B4="",C4=""),"",IF(AND(B4="",C4<>""),F3,IF(ISERROR(FIND(" - ",B4)),B4*1,LEFT(B4,FIND(" - ",B4))*1)))
F5=IF(AND(B5="",C5=""),"",IF(AND(B5="",C5<>""),F4,IF(ISERROR(FIND(" - ",B5)),B5*1,LEFT(B5,FIND(" - ",B5))*1)))
F6=IF(AND(B6="",C6=""),"",IF(AND(B6="",C6<>""),F5,IF(ISERROR(FIND(" - ",B6)),B6*1,LEFT(B6,FIND(" - ",B6))*1)))
F7=IF(AND(B7="",C7=""),"",IF(AND(B7="",C7<>""),F6,IF(ISERROR(FIND(" - ",B7)),B7*1,LEFT(B7,FIND(" - ",B7))*1)))
F8=IF(AND(B8="",C8=""),"",IF(AND(B8="",C8<>""),F7,IF(ISERROR(FIND(" - ",B8)),B8*1,LEFT(B8,FIND(" - ",B8))*1)))
F9=IF(AND(B9="",C9=""),"",IF(AND(B9="",C9<>""),F8,IF(ISERROR(FIND(" - ",B9)),B9*1,LEFT(B9,FIND(" - ",B9))*1)))
F10=IF(AND(B10="",C10=""),"",IF(AND(B10="",C10<>""),F9,IF(ISERROR(FIND(" - ",B10)),B10*1,LEFT(B10,FIND(" - ",B10))*1)))
F11=IF(AND(B11="",C11=""),"",IF(AND(B11="",C11<>""),F10,IF(ISERROR(FIND(" - ",B11)),B11*1,LEFT(B11,FIND(" - ",B11))*1)))
F12=IF(AND(B12="",C12=""),"",IF(AND(B12="",C12<>""),F11,IF(ISERROR(FIND(" - ",B12)),B12*1,LEFT(B12,FIND(" - ",B12))*1)))
F13=IF(AND(B13="",C13=""),"",IF(AND(B13="",C13<>""),F12,IF(ISERROR(FIND(" - ",B13)),B13*1,LEFT(B13,FIND(" - ",B13))*1)))
F14=IF(AND(B14="",C14=""),"",IF(AND(B14="",C14<>""),F13,IF(ISERROR(FIND(" - ",B14)),B14*1,LEFT(B14,FIND(" - ",B14))*1)))
F15=IF(AND(B15="",C15=""),"",IF(AND(B15="",C15<>""),F14,IF(ISERROR(FIND(" - ",B15)),B15*1,LEFT(B15,FIND(" - ",B15))*1)))
G4=IF(F4="","",C4)
G5=IF(F5="","",C5)
G6=IF(F6="","",C6)
G7=IF(F7="","",C7)
G8=IF(F8="","",C8)
G9=IF(F9="","",C9)
G10=IF(F10="","",C10)
G11=IF(F11="","",C11)
G12=IF(F12="","",C12)
G13=IF(F13="","",C13)
G14=IF(F14="","",C14)
G15=IF(F15="","",C15)
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I worked this out this morning. There may be a more elegant solution out there.

to begin with, I copied the specific ranges with their tiered rates (there are two in my live data) to a third sheet called Rules. These are split out with the lower and upper range in individual cells. I also added a table for the tiered rates with the lower limit of each tier in the first row and the number of associated offset rows i need in the second row. I called this Range: DollarValueOffset

Code:
=IF(B3="NE",Rules!$H$4,IF(NOT(OR(AND(B3>=Rules!$D$8,B3<=Rules!$E$8),AND(B3>=Rules!$D$9,B3<=Rules!$E$9))),VLOOKUP(B3,ServiceFees,2,1),OFFSET(INDEX(Rates!$G$4:$G$101,MATCH(B3,Rates!$F$4:$F$101,1),1),HLOOKUP(C3,DollarValueOffset,2,1),0)))

so, it reads,

Code:
IF(B3="NE",Rules!$H$4

if the procedure is an "NE", use the value held in Rules H4. There is only ever a handful of these and they are straightforward so get them out of the way first.

Code:
IF(NOT(OR(AND(B3>=Rules!$D$8,B3<=Rules!$E$8),AND(B3>=Rules!$D$9,B3<=Rules!$E$9))),VLOOKUP(B3,ServiceFees,2,1)
**Service Fees is the two columns F & G on Rates tab

next, if not NE, then find those that are not within the tiered ranges. these need just a simple vlookup to clear them up. so, I have identified those procedure codes that are within the two ranges with the two And statements. The lookup works on those codes that are NOT within the specified ranges.

now the fun part:

Code:
OFFSET(INDEX(Rates!$G$4:$G$101,MATCH(B3,Rates!$F$4:$F$101,1),1),HLOOKUP(C3,DollarValueOffset,2,1),0)))

as you cannot use offset with vlookup (vlookup returns a value, offset is a range function), I used Index/Match for the lookup. this finds the first instance of the Procedures with the tiered rates. It references the DollarValueOffset named range in an Hlookup which holds the tiered dollar values and the number of rows to offset from the lowest tiered value. (0 rows for values up to $150, 1 row for values above $150 and below $500, etc).

I hope this makes enough sense for anyone in a similar position to make use of.

happy days.
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,058
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