+ Reply to Thread
Results 1 to 4 of 4

Need help with Order sheet in Excel

Hybrid View

  1. #1
    Registered User
    Join Date
    10-21-2015
    Location
    Pennsylvania, USA
    MS-Off Ver
    2013
    Posts
    4

    Need help with Order sheet in Excel

    Hi folks!

    So here's my order sheet that I'm working with. What I need to happen is that our salesmen will enter in a Dealer Name in the top. At that point I'd like a new worksheet in the workbook to be created that's an exact copy of the sheet they started with and titled the same as the Dealer Name (formatting and all). Then they'd be able to fill in the rest of the information in the order form. Any ideas on how I can make this work? This is only the first step in a complicated process but I figured I'd get this step working first then come back if I needed more help with the rest.

    Thanks so much!

    Order Sheet
    Attached Images Attached Images

  2. #2
    Forum Expert
    Join Date
    08-16-2015
    Location
    Antwerpen, Belgium
    MS-Off Ver
    2007-2016
    Posts
    2,380

    Re: Need help with Order sheet in Excel

    Think this can

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$G$7" And Target <> vbNullString Then
        Dim ws1 As Worksheet, naam As String
        Set ws1 = ActiveSheet
        naam = Range("G7")
        ActiveSheet.Copy After:=Sheets(Sheets.Count)
        Sheets(Sheets.Count).Name = naam
        ws1.Range("G7").ClearContents
        End If
    End Sub
    Kind regards
    Leo

  3. #3
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Need help with Order sheet in Excel

    Why not use proper data entry? That is each column represents a field and has a header. Each row is one record.

    This format is the easiest to work with and can produce many different "report" type results rather than entering into a report type form which is difficult to gather statistics from or to produce other reports.

    The format would be something like the following which would allow the creation of many different reports.
    A
    B
    C
    D
    E
    F
    G
    H
    1
    Date PO Number Company Item Series Retail Net Quantity Map
    2
    3
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  4. #4
    Registered User
    Join Date
    10-21-2015
    Location
    Pennsylvania, USA
    MS-Off Ver
    2013
    Posts
    4

    Re: Need help with Order sheet in Excel

    Unfortunately I need to keep the format that was given to me. Trust me, if I was designing the workbook it would be a lot more like this.

+ 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. Replies: 4
    Last Post: 12-02-2014, 03:46 AM
  2. Replies: 1
    Last Post: 12-01-2014, 03:01 PM
  3. [SOLVED] Order Form to Summarise Order on another sheet with a Submit Order Button
    By KazzICC in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-01-2014, 03:25 AM
  4. Excel order/packing sheet
    By filoH in forum Excel General
    Replies: 1
    Last Post: 05-19-2013, 10:24 AM
  5. [SOLVED] How do I reverse name order from Last, First to First Last in excel spread sheet
    By karpetwer in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 08-31-2012, 10:07 AM
  6. How to set Tab order in Excel sheet VBA
    By rafeemd in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-08-2011, 02:37 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