YPJunk Member May 11, 2021 #1 What formula can I use in Tab 5, column E to show the flat stipend amount based on the inputs in column B and column D that are based on the table in Tab 6 (A2:E9)? Thank you for your help! -Yvette Attachments Excel Formula Question - Table Reference.xlsx 75.8 KB · Views: 7
What formula can I use in Tab 5, column E to show the flat stipend amount based on the inputs in column B and column D that are based on the table in Tab 6 (A2:E9)? Thank you for your help! -Yvette
p45cal Well-Known Member May 12, 2021 #2 In E2: Code: =VLOOKUP(D2,'6. Pay Range Table'!$A$3:$E$9,MATCH(B2,'6. Pay Range Table'!$A$2:$E$2,0),FALSE) copied down, but it will overwrite what you already have there. You could wrap it in IFERROR to hide errors: Code: =IFERROR(VLOOKUP(D2,'6. Pay Range Table'!$A$3:$E$9,MATCH(B2,'6. Pay Range Table'!$A$2:$E$2,0),FALSE),"")
In E2: Code: =VLOOKUP(D2,'6. Pay Range Table'!$A$3:$E$9,MATCH(B2,'6. Pay Range Table'!$A$2:$E$2,0),FALSE) copied down, but it will overwrite what you already have there. You could wrap it in IFERROR to hide errors: Code: =IFERROR(VLOOKUP(D2,'6. Pay Range Table'!$A$3:$E$9,MATCH(B2,'6. Pay Range Table'!$A$2:$E$2,0),FALSE),"")