+ Reply to Thread
Results 1 to 6 of 6

VBA code for search and print the form

  1. #1
    Forum Contributor Immortal2014's Avatar
    Join Date
    09-18-2014
    Location
    Greece (EU)
    MS-Off Ver
    Office 2021
    Posts
    405

    VBA code for search and print the form

    Hi, i think that i need big help here.
    I have a sheet named Numbers which it having an area with numbers, and a sheet named Form with a range for printing. In this range, cell E13 is for numbers from sheet Numbers, and cell D11 is for type of each number. Now, may i have a button, and when i click on it doing the following,
    look at the sheet Numbers for the first number and put it to cell E13, and in D11 put the type of this number, and print the range B2:M73 from sheet Form.
    Then again for the second listed number etc
    This needed to be made for all numbers that exist in the range in sheet Numbers.
    Is this possible?
    Thanks in advance.
    Attached Files Attached Files
    Nick

  2. #2
    Forum Contributor Immortal2014's Avatar
    Join Date
    09-18-2014
    Location
    Greece (EU)
    MS-Off Ver
    Office 2021
    Posts
    405

    Re: VBA code for search and print the form

    Up for view

  3. #3
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,943

    Re: VBA code for search and print the form

    Please Login or Register  to view this content.
    Ben Van Johnson

  4. #4
    Forum Contributor Immortal2014's Avatar
    Join Date
    09-18-2014
    Location
    Greece (EU)
    MS-Off Ver
    Office 2021
    Posts
    405

    Re: VBA code for search and print the form

    Works great Ben!
    I have two questions,
    In With Sheets("Numbers") TypeList = .Range("A4:AB4").Value the range is the types but the types are in D4:AB4. Can you please explain this to me, because i have no idea from vba code.
    is it easy to modify the code to search in D5:AB29 by list? Example, First in D5:D29 ,next E5:E29, next F5:F29, ... Until AB5:AB29?
    Thanks for help again!

  5. #5
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,943

    Re: VBA code for search and print the form

    TypeList is an array. When I fill the array starting at column D the first Type will go into row #1. However, I'm starting the number search in sheet column D (i.e. column #4). I wanted to use the column number of the found string to return the Type from the array. So I could have subtracted 3 from the found column to get the correct array row number. Since I chose to fill the TypeList starting with Column A, the array row corresponds to the column of the found numberstring without the subtraction.

    There would only be a small change in the code:

    TypeList = .Range("A4:AB4").Value would change to TypeList = .Range("D4:AB4").Value

    and
    .Range("D11").Value = TypeList(1, NumStr.Column) would change to .Range("D11").Value = TypeList(1, NumStr.Column-3)

    Doing it without the array for the types:
    Please Login or Register  to view this content.
    If you want to search by columns you need two loops (something like):
    Please Login or Register  to view this content.
    Last edited by protonLeah; 03-10-2016 at 12:29 AM.

  6. #6
    Forum Contributor Immortal2014's Avatar
    Join Date
    09-18-2014
    Location
    Greece (EU)
    MS-Off Ver
    Office 2021
    Posts
    405

    Re: VBA code for search and print the form

    Thank you for the info and for your help! I wil try it and i will inform you for the results.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Code for search
    By Immortal2014 in forum Excel General
    Replies: 1
    Last Post: 03-07-2016, 09:51 PM
  2. Code for search and print
    By Immortal2014 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-07-2016, 03:06 PM
  3. Code for search and print
    By Immortal2014 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-07-2016, 02:45 PM
  4. VBA code to open, fill, and print a form in another worksheet
    By raywilexel in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 04-14-2015, 06:52 PM
  5. Problem with code to print value in data form to a cell
    By RN12345 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-23-2014, 04:26 PM
  6. [SOLVED] VBA Form code using DO while Loop to print a message.
    By enjoi2p0 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-21-2013, 02:34 AM
  7. print form code problem
    By shankar.nstl in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-06-2011, 01:17 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1