• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

vlookup formula

Hello

I want a formula for cell C4

This is what I want to have in the formula

If C3 says "Test A" lookup F3 If C3 says "Test B" lookup G3 If C3 says "Test A" lookup H3

Can you help

Mark
 
Hi Mark,
You have already made your logic, you just need to implement it with IFs:
=IF(C3="Test A",F3,IF(C3="Test B",G3,H3))

Why you have mentioned 2 different lookups for Test A?

Regards,
 
Back
Top