• 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 USING VBA

Hello,


I am excited to see this forum as I have gotten a lot of great tips from PHD and look forward to learning more. Keep up the great work!
 
Hi i want to vlookup in excel vba

sample file attached here
 

Attachments

  • customer name.xlsx
    34.2 KB · Views: 1
Hi i want to vlookup in excel vba

sample file attached here

Hi @achu

One must should to start a new thread for very own query as what u did might be called hijacking.

see this ...

Code:
Sub vlook()
    Range("F4:F127").Formula = "=VLOOKUP(B4,Sheet2!$A$4:$B$127,2,0)"
    Range("F4:F127").Value = Range("F4:F127").Value
End Sub
 
Hi Deepak,

can you help me to using code with Macro below given details


Countif
Sum If
Sum Product
IF and

Below my required data and attached file here.


Total Booking Total Aeea
Vakas
Indigo
Fern
Ivy
Periwinkle
Residency-3
Orion-3
Galaxy-2
Nakshatra
Bella Vista
From Date Total Booking Total Aeea
To Date
Vakas
Indigo
Fern
Ivy
Periwinkle
Residency-3
Orion-3
Galaxy-2
Nakshatra
Bella Vista
 

Attachments

  • customer name.xlsx
    35.4 KB · Views: 1
Back
Top