Sales worksheet with an if then query

ironwood40

New Member
Joined
Sep 25, 2012
Messages
7
Here is my question...I have a workbook that my sales reps use to input orders...we sell a variety of promotional products. What I need is when the sales rep is placing an order for apparel, on the cost sheet where they put all of their information, which then populates the estimate and P.O. tabs, I want to add a column before the count column that is titled “Apparel”. If they put a Y in any cell below that title, it will automatically take them to another worksheet in the workbook to input the following: item number, description, color, size and lastly quantity. When they are done inputting the info on that worksheet, they will go back to the cost worksheet and all the info has been sorted and counted but added as a text line under description, not on separate lines but as a summary by item number and color. As I mentioned, that info populates the estimate tab for the client and the P.O. tab for the vendor....

is this possible...I am a bit above novice excel user but programmer I am not...thanks for any help you all can give me...
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
I feel like this would be fairly easily executed with a userform. A Worksheet_Change event can open the userform whenever you change a cell in the "Apparel" column to "Y". You can put in as many userform controls as you want to be filled out and once they close the userform all the values can be sent where they need to go as well as concatenated into a single string to be placed in your product description cell.

I'd be happy to help with the macro/userform side of things but would need more info on where all the data needs to go etc.
 
Upvote 0
I would love your help...I can send you the workbook with the new tab included and show examples of what I need if that’s possible...
 
Upvote 0
Ok I've tried to do a mock-up so I can paste the code here and you can implement it in your spreadsheet. The table below is where your Apparel column would be and when a "Y" is placed in it it opens a userform and asks dor all the details then populates the Description column associated with the Apparel column.

ABCDE
1Heading 1Heading 2ApparelCountDescription
2YWill go here
3
4

<tbody>
</tbody>

So in your sheet module where the above table is:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim rng As Range
    
    Application.EnableEvents = False
    
    If Target.Cells.Count > 1 Then
        Application.EnableEvents = True
        Exit Sub
    End If
    
    If Target.Value = "y" Then Target.Value = "Y"
    
    Set rTarget = Target.Offset(0, 2)
    Set rng = Range("ApparelRange")
    
    If Not Intersect(Target, rng) Is Nothing And Target.Value = "Y" Then
        ItmDetails.Show
    End If
    
    Application.EnableEvents = True
End Sub

Then I created a userform with a few textboxes asking for all the details you listed and in the code in the userform looks like:

Code:
Private Sub Cancel_Click()
    Unload Me
End Sub
Private Sub Submit_Click()
    Dim Description As String, DblLine As String
    Dim ctrl As MSForms.Control, emptyCtrl As Boolean, continue As Boolean
    
    emptyCtrl = False
    
    For Each ctrl In Me.Controls
        If TypeOf ctrl Is MSForms.TextBox Then
            If ctrl.Value = "" Then emptyCtrl = True
        End If
    Next ctrl
    
    If emptyCtrl = True Then
        continue = MsgBox("There is an empty field, do you want ot continue?", vbYesNo)
        If continue = False Then
            Application.EnableEvents = True
            Exit Sub
        End If
    End If
    
    ' Here you would send the userform values to any destinations they need to go.
    
    DblLine = Chr(10) & Chr(10)
    
    Description = "Item Number: " & ItmNo.Value & DblLine & "Description: " & ItmD.Value & DblLine & "Color: " & ItmColor _
                  & DblLine & "Size: " & ItmSize & DblLine & "Quantity: " & ItmQty
    
    rTarget.Value = Description
    
    Set rTarget = Nothing


    Unload Me
End Sub

The ItmNo, ItmD, ItmColor, ItmSize, and ItmQty are the names of the textboxes where all the details are input by the user. This code asks if you want to continue if not all fields are entered. You can change it to not allow them to continue without filling all required fields.

Lastly but very important you need to create a new module and place this line in it:

Code:
Public rTarget As Range

That is a public variable which makes it possible to reference which cell you changed outside of the change event.

Have a go at implementing this into your spreadsheet. Let us know how it goes.

Good luck!
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,215,261
Messages
6,123,932
Members
449,134
Latest member
NickWBA

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