Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to link Benefit tbl and Deduction tbl together but codes are diff

Status
Not open for further replies.

scotton

Technical User
Jun 20, 2005
27
0
0
US
Okay, I need to be able to show an employee with their benefit plan code Ex: PPO and beside it show what that employees deduction code is Ex: MD08. As you can see, these codes are not the same but they represent the same medical coverage; one code is for the HR benefits group and the other is the payroll group deduction code.

Another fly in the ointment is there are multiple deduction codes per benefit plan. Ex: PPO benefit plan code can have deduction code of MD08 for pretax deduction, MD68 employer paid deduction code, and MDX8 is posttax deduction code.

Is there a way to do a union query or create a formula field where I would define the benefit plan codes based off what the deduction codes are and then be able to link by that formula field?

I'm sure there's a way to do this, I'm just not sure the best way to do it.
Thank you,

Sarah
 
Do you need to be able to do calculations with fields from each table or is this just for display? You could create a crosswalk formula and then use it to link a subreport containing one of the tables. I would probably keep the multiple instance table in the main report and use a formula like this:

select {table.deductioncode}
case "MDX8","MD08","MD68" : "PPO"
case "ABC1", "ABD2" : "HMO"
//etc.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top