need information

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Want to know if you can have more than one number in a formula for a column
index number.
 
Can you be a bit more specific? What exactly are you trying to achieve? What
is your input data? What are your formulas? What results did you expect?
What did you get instead?

But in general, the answer is YES
--
Kind regards,

Niek Otten

Microsoft MVP - Excel
 
=IF(C19="","",VLOOKUP(C19,INDIRECT(B19&"List"),2,FALSE)) is the formula that
I am using, but i want to use columsn 2, 3, 4, 5 to bring up several prices.
 
Because you probably need the prices in separate columns, you need 4
formulas.
You might take a look in HELP for the MATCH() function to avoid duplication
of your somewhat complex mechanism to find the right row and use INDEX() to
get the prices.

--
Kind regards,

Niek Otten

Microsoft MVP - Excel
 
If you're talking about the ability to *copy* the formula across columns,
along a row, and *automatically increment* the column index number, just
replace the "2" with "Column(B:B)".

The "Column(B:B)" does *not* mean you're indexing Column B (although you
very well might, just as a coincidence), it's used because it equates to
"2", and will increment as it's copied along a row.

=IF(C19="","",VLOOKUP(C19,INDIRECT(B19&"List"),Column(B:B),FALSE))

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

=IF(C19="","",VLOOKUP(C19,INDIRECT(B19&"List"),2,FALSE)) is the formula that
I am using, but i want to use columsn 2, 3, 4, 5 to bring up several prices.
 
The colums I am gathering the information from are on a separate sheet. I
want 4 prices from a different sheet to appear in that cell.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top