• 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.

ISBLANK to multiple cell

FauzanOmar

New Member
79139

Hi, how do I insert formula to capture data above?
Basically, If I write Singapore, the formula will automatically detect the USD rate 2,000, and if I write London, the formula will automatically detect the RM1,000.

I tried to enter formula ISBLANK and Index & Match to the cell range, but it doesn't detect the data.

Thanks :)
 

Attachments

  • ISBLANK MULTIPLE CELL.xlsx
    13.1 KB · Views: 3
Maybe
Code:
=INDEX(VALUE(I4:I6&J4:J6),MATCH(E3,H4:H6,0))
 

Attachments

  • ISBLANK MULTIPLE CELL.xlsx
    14 KB · Views: 3
Here is other formula options to get the result as same as Grah-Guido's

=SUMPRODUCT(I4:J6*(H4:H6=E3))

or,

=LOOKUP(9^9,(I4:I6&J4:J6)/(H4:H6=E3))

Regards
 
Back
Top