copy values to another sheet based on cell value

myeung990

New Member
Joined
Nov 8, 2018
Messages
2
hello im trying to copy values in some cells to another worksheet whose cell name is based on the value in e1.
Example value in e1=10mm so when my macro works the items i want to copy will be placed in worksheet named "10mm"

i have a working macro where the worksheet "demand log" is fixed i want to change it so that i can specify which worksheet i want to copy the items to.

Sub Third_Command()
Dim Rowd As Integer
Dim rowu As Integer


Update = MsgBox("Confirm?", vbYesNo, "Update")
If Update = vbYes Then

For rowu = 5 To 11
Rowd = 5

Do Until Worksheets("Demand Log").Cells(Row, 1) = ""
If Worksheets("Update").Cells(rowu, 1).Value = Worksheets("Demand Log").Cells(Row, 1) Then
Exit Do
Else
Rowd = Rowd + 1
End If
Loop
If Worksheets("Demand Log").Cells(Rowd, 1) = "" And Worksheets("Update").Cells(rowu, 14) <> "" Then
Worksheets("Demand Log").Cells(Rowd, 2).Value = Worksheets("Update").Cells(3, 16).Value
Worksheets("Demand Log").Cells(Rowd, 3).Value = Worksheets("Update").Cells(rowu, 14).Value
Worksheets("Demand Log").Cells(Rowd, 4).Value = Worksheets("Update").Cells(rowu, 7).Value
Worksheets("Demand Log").Cells(Rowd, 5).Value = Worksheets("Update").Cells(rowu, 13).Value
Worksheets("Demand Log").Cells(Rowd, 6).Value = Worksheets("Update").Cells(rowu, 2).Value
Worksheets("Demand Log").Cells(Rowd, 7).Value = Worksheets("Update").Cells(rowu, 3).Value
Worksheets("Demand Log").Cells(Rowd, 8).Value = Worksheets("Update").Cells(rowu, 4).Value


End If
Next rowu
End If
End Sub

what should replace Worksheets("Demand Log")?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi & welcome to MrExcel.
How about
Code:
Sub Third_Command()
   Dim Rowd As Integer
   Dim rowu As Integer
   Dim Ws As Worksheet
   
   Update = MsgBox("Confirm?", vbYesNo, "Update")
   If Update = vbYes Then
      Set Ws = Sheets(Sheets("Update").Range("E1").Value)
      For rowu = 5 To 11
         Rowd = 5
         
         Do Until Ws.Cells(Row, 1) = ""
            If Worksheets("Update").Cells(rowu, 1).Value = Ws.Cells(Row, 1) Then
               Exit Do
            Else
               Rowd = Rowd + 1
            End If
         Loop
         If Ws.Cells(Rowd, 1) = "" And Worksheets("Update").Cells(rowu, 14) <> "" Then
            Ws.Cells(Rowd, 2).Value = Worksheets("Update").Cells(3, 16).Value
            Ws.Cells(Rowd, 3).Value = Worksheets("Update").Cells(rowu, 14).Value
            Ws.Cells(Rowd, 4).Value = Worksheets("Update").Cells(rowu, 7).Value
            Ws.Cells(Rowd, 5).Value = Worksheets("Update").Cells(rowu, 13).Value
            Ws.Cells(Rowd, 6).Value = Worksheets("Update").Cells(rowu, 2).Value
            Ws.Cells(Rowd, 7).Value = Worksheets("Update").Cells(rowu, 3).Value
            Ws.Cells(Rowd, 8).Value = Worksheets("Update").Cells(rowu, 4).Value
            
         
         End If
      Next rowu
   End If
End Sub
 
Upvote 0
Hi & welcome to MrExcel.
How about
Code:
Sub Third_Command()
   Dim Rowd As Integer
   Dim rowu As Integer
   Dim Ws As Worksheet
   
   Update = MsgBox("Confirm?", vbYesNo, "Update")
   If Update = vbYes Then
      Set Ws = Sheets(Sheets("Update").Range("E1").Value)
      For rowu = 5 To 11
         Rowd = 5
         
         Do Until Ws.Cells(Row, 1) = ""
            If Worksheets("Update").Cells(rowu, 1).Value = Ws.Cells(Row, 1) Then
               Exit Do
            Else
               Rowd = Rowd + 1
            End If
         Loop
         If Ws.Cells(Rowd, 1) = "" And Worksheets("Update").Cells(rowu, 14) <> "" Then
            Ws.Cells(Rowd, 2).Value = Worksheets("Update").Cells(3, 16).Value
            Ws.Cells(Rowd, 3).Value = Worksheets("Update").Cells(rowu, 14).Value
            Ws.Cells(Rowd, 4).Value = Worksheets("Update").Cells(rowu, 7).Value
            Ws.Cells(Rowd, 5).Value = Worksheets("Update").Cells(rowu, 13).Value
            Ws.Cells(Rowd, 6).Value = Worksheets("Update").Cells(rowu, 2).Value
            Ws.Cells(Rowd, 7).Value = Worksheets("Update").Cells(rowu, 3).Value
            Ws.Cells(Rowd, 8).Value = Worksheets("Update").Cells(rowu, 4).Value
            
         
         End If
      Next rowu
   End If
End Sub

thank you sir! your code worked perfectly :):):)
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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