vba code for lookup worksheet function

  • Thread starter Thread starter Binoy
  • Start date Start date
B

Binoy

hello,
Any help is welcome.
I would like to write a vba code for looking up for a particular
cell value from a range of cells matching any one row & column, similar
to Combine the Index and Match formulas in Microsoft Excel.
 
you can use index and match in VBA,

Application.Index(Range("A1:Z26"), _
Application.Match(rowval,Range("A1:A26,0), _
Application.Match(colVal, Range("A1:Z1"),0))
 

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