Code works however, I need it to only bring in the values, not the formula

quintin

Board Regular
Joined
Jun 26, 2013
Messages
52
I have vba code that matches up to a list of worksheets in a column, in column B i need the code (which I have, however just want the values) to relate to "D1". Please see the code I have already. Many Thnx
Code:
Private Sub CommandButton3_Click()

For Each wkSht In Sheets

For Each cell In Sheets("SHEETSNAMES").Range("A1:A200")

If cell.Value = wkSht.Name Then

wkSht.Range("D1").Copy Destination:=cell.Offset(0, 1)

Application.CutCopyMode = False

End If

Next cell

Next wkSht

End Sub[code]
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Maybe..
VBA Code:
Private Sub CommandButton3_Click()

    For Each wkSht In Sheets

        For Each cell In Sheets("SHEETSNAMES").Range("A1:A200")

            If cell.Value = wkSht.Name Then

                'wkSht.Range("D1").Copy Destination:=cell.Offset(0, 1)
                
                cell.Offset(0, 1).Value = wkSht.Range("D1").Value
                
                'Application.CutCopyMode = False

            End If

        Next cell

    Next wkSht

End Sub
 
Upvote 0

Forum statistics

Threads
1,213,565
Messages
6,114,337
Members
448,568
Latest member
Honeymonster123

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