Vlookup help

C

Confusicous

Scenario:

Column A (Starting at A14) = Dates
Column B (Starting at B14) = Stock Prices
Column C (Starting at C14) = (This is where I need my Vlookup help)

Column O (Starting at O9) = Dates (there are only 5 days of sale and
purchase.)
Column P (Starting at P9) = Shares purchased/sold

I need help figuring out the Vlookup formula that will find my dates and
multiply the information in column P by Column B to get the amount. Also
since I don't want "N/A" to show up on the blank dates, if you could show me
a nested if statement that would make the N/A's a zero...I would appreciate
it. Please let me know if I need to explain more.

=VLOOKUP(A14,O$9:p$13,2,FALSE)

This is the Vlookup I had but it isn't multiply in the shares and the price...

Thanks in advance
 
J

Jacob Skaria

Try the below formula

=IF(ISNA(VLOOKUP(A14,O$9:p$13,2,0)),"",VLOOKUP(A14,O$9:p$13,2,0)*B14)

If this post helps click Yes
 

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

Similar Threads

Vlookup help 1
vlookup with if statement together 6
vlookup almost works but not quite 5
VLOOKUP returns #REF!? 1
Excel Help with dates 2
help on a vlookup please 5
Selecting an unmatched value 1
VLOOKUP 4

Top