Xlookup VBA

bench205

New Member
Joined
Oct 5, 2022
Messages
11
Office Version
  1. 365
Platform
  1. Windows
Hi,

Please help me i'm only a beginner in VbA.
I got a lot of names in cell B more than 60 names and 31 rows for date. BTW this is for a leave tracker.

My code is
For x = 5 to 55

Cells(x, 3) = application.evaluate("=xlookup(B&C2,NAME&DATE,LEAVE,"" "")")

Cells(x, 4) = application.evaluate("=xlookup(B&D2,NAME&DATE,LEAVE,"" "")")


Cells(x, 5) = application.evaluate("=xlookup(B&E2,NAME&DATE,LEAVE,"" "")")

Until

Cells(x, 33) = application.evaluate("=xlookup(B&AG2,NAME&DATE,LEAVE,"" "")")

Next X

End sub



Please excel masters help me
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Here is some pictures. I cant download the file because this is a work laptop. Thank you
 

Attachments

  • Screenshot 2022-10-05 225635.png
    Screenshot 2022-10-05 225635.png
    36 KB · Views: 10
  • Screenshot 2022-10-05 225553.png
    Screenshot 2022-10-05 225553.png
    15.4 KB · Views: 9
  • Screenshot 2022-10-05 225502.png
    Screenshot 2022-10-05 225502.png
    40.3 KB · Views: 9
Upvote 0
Here is some pictures. I cant download the file because this is a work laptop. Thank you
Hi please help me for this VBA code.
Sheet 1 is leave planner
Sheet 2 is Data (name &date&leave) are all in there

The native excel formula is

=xlookup = b5&c2, NAME&DATE, LEAVE,"")
And then drag it until
=xlookup = b5&AG2, NAME&DATE, LEAVE,"")

And also drag it down from
=xlookup = b5&c2, NAME&DATE, LEAVE,"")
=xlookup = b6&c2, NAME&DATE, LEAVE,"")
=xlookup = b7&c2, NAME&DATE, LEAVE,"")
=xlookup = b8&c2, NAME&DATE, LEAVE,"")


but im having a hard time please check my code. Im still new here i just need to finish this project please.

the result im getting is only for the first i need to get the same result like in normal excel.

For x = 5 to 55

Cells(x, 3) = application.evaluate("=xlookup(B&C2,NAME&DATE,LEAVE,"" "")")

Cells(x, 4) = application.evaluate("=xlookup(B&D2,NAME&DATE,LEAVE,"" "")")


Cells(x, 5) = application.evaluate("=xlookup(B&E2,NAME&DATE,LEAVE,"" "")")

Until

Cells(x, 33) = application.evaluate("=xlookup(B&AG2,NAME&DATE,LEAVE,"" "")")

Next X

End sub
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,947
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top