ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   What is the VBA equivilate to Excel worksheet function lookup (https://www.excelbanter.com/excel-programming/285226-re-what-vba-equivilate-excel-worksheet-function-lookup.html)

Bill Manville

What is the VBA equivilate to Excel worksheet function lookup
 
John wrote:
I would like to write code for the following
lookup function.

=Index(AE31;AJ54,MATCH(L3,AE31;AE54),MATCH(M2,AE31 ;AJ31,))


V = [Index(AE31:AJ54,MATCH(L3,AE31:AE54),MATCH(M2,AE31: AJ31,))]

might be considered cheating?

With Range("AE31:AJ54")
V = .Cells(WorksheetFunction.Match(Range("L3"),.Column s(1)), _
WorksheetFunction.Match(Range("M2"),.Rows(1))
End With

is another way.

Bill Manville
MVP - Microsoft Excel, Oxford, England
No email replies please - reply in newsgroup



All times are GMT +1. The time now is 06:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com