Consulting

Results 1 to 5 of 5

Thread: Search form in excel

  1. #1

    Search form in excel

    Hi,

    I have data sheet called Skill Matrix. In which I have information like names, skill ratings, qualification and experience.

    I want a search functionality on other sheet. In which I can search all the names, qualification and experience based on the skill and rating. To do this, my first choice will be using list and formulas. If it is not possible just with formulas, i will go for a VB forms.

    I don't know how to start with this. I have an attached file here.

    Please guide me or give me a little start with this.
    Last edited by amit_nalawad; 03-23-2009 at 11:21 PM.

  2. #2
    Moderator VBAX Master georgiboy's Avatar
    Joined
    Mar 2008
    Location
    Kent, England
    Posts
    1,198
    Location
    Is this what you are after...
    Click here for a guide on how to add code tags
    Click here for a guide on how to mark a thread as solved
    Click here for a guide on how to upload a file with your post

    Excel 365, Version 2403, Build 17425.20146

  3. #3
    Hi,
    Thanks for reply.
    Can you please send me the vba code for this? bcoz when i downloaded it, does not show the macro.
    Please if you could do this for me that will be really helpful.

    Thanks Again

  4. #4
    VBAX Tutor
    Joined
    Sep 2007
    Posts
    265
    Location
    Quote Originally Posted by amit_nalawad
    Can you please send me the vba code for this? bcoz when i downloaded it, does not show the macro.
    Nope, the vba code are ther.e Just press Alt+F11 to open vbe.

    Rgds, Harto

  5. #5
    Dear all,
    Can someone please explain the code below?
    I found myself in the same situation as Amit that I need to create a "search" form. I tried to play around with the spreadsheet but I got stuck at the code below.

    I would like to move column B (Name) after C (Communication Skills) and delete column A, D to H on the Skill Matrix.

    As for me, I'm not good with these VBA codes. Any help from you guys would greatly appreciated.

    [VBA]Destination:=Sheets("Search").Rows(Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row + 1)
    Sheets("Search").Range("B" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row).Cut _
    Sheets("Search").Range("E" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row)
    Sheets("Search").Range("F" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row & _
    ":H" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row).Delete
    Sheets("Search").Range("E" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row & _
    ":J" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row).Borders.LineStyle = xlContinuous
    With Sheets("Search").Range("A" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row & _
    "" & Sheets("Search").Range("E" & Rows.Count).End(xlUp).Row)[/VBA]

    Thank you!

    Kind regards,
    LV

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •