Referencing values from inside & outside a table in excel

mtterry

New Member
Joined
Aug 9, 2016
Messages
45
I have a table that gets updated based on a couple of data sources that are manipulated in the query editor in excel. That data is referenced by another tab for a process in my company. The table will fluctuate in # of rows, but shouldn't exceed 400. In the tab that my company uses, I want to insert a formula in certain columns that reference the data in the table. Before I used power query and referenced the table, I had the formulas in row #2 - row #400 that included an IF statement that would keep the rows blank if the spreadsheets being referenced didn't have data (i.e. the data was less than 400 rows). When I try to do that while referencing the tab that includes a table, I get a #VALUE error for the rows past the last row of the table, and I'm not sure how to have it just return blank cells?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try this method

Example original formula referencing the table (column A)
=VLOOKUP(Table1[@Friut],Table1,5,0)
Amended formula (column B)
=IFERROR(VLOOKUP(Table1[@Friut],Table1,5,0),"")

Cell Formulas
RangeFormula
A2:A9A2=VLOOKUP(Table1[@Friut],Table1,5,0)
B2:B9B2=IFERROR(VLOOKUP(Table1[@Friut],Table1,5,0),"")
 
Upvote 0
Try this method

Example original formula referencing the table (column A)
=VLOOKUP(Table1[@Friut],Table1,5,0)
Amended formula (column B)
=IFERROR(VLOOKUP(Table1[@Friut],Table1,5,0),"")

Cell Formulas
RangeFormula
A2:A9A2=VLOOKUP(Table1[@Friut],Table1,5,0)
B2:B9B2=IFERROR(VLOOKUP(Table1[@Friut],Table1,5,0),"")
That worked, thank you!
 
Upvote 0

Forum statistics

Threads
1,214,431
Messages
6,119,457
Members
448,898
Latest member
drewmorgan128

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