Please Help - Exam in 1 hour

DonDarvillo

New Member
Joined
Jun 17, 2014
Messages
1
Hello.

I hope somebody can help me.

I have this piece of code, which takes some values, and copy them into a list (It's a reservation system).

How can i rewrite this to get it to paste ONLY VALUES in destination! because some of the elements in the reservation system are auto-calculating, but I want to save the specific data in the list.

Sub Knap5_Klik()



Worksheets("Reservation").Range("B5:K5").Copy _
Destination:=Worksheets("Bookninger").Cells(Worksheets("Bookninger").Rows.Count, "A").End(xlUp).Offset(1, 0)


Worksheets("Reservation").Select

Worksheets("Reservation").Range("B8:D8").Copy _
Destination:=Worksheets("Bookninger").Cells(Worksheets("Bookninger").Rows.Count, "K").End(xlUp).Offset(1, 0)
Worksheets("Reservation").Select

End Sub
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try:
Code:
Sub Knap5_Klik()
    Worksheets("Reservation").Range("B5:K5").Copy
    Worksheets("Bookninger").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
    Worksheets("Reservation").Range("B8:D8").Copy
    Worksheets("Bookninger").Cells(Rows.Count, "K").End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
    Worksheets("Reservation").Select
    Application.CutCopyMode = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,074
Messages
6,128,649
Members
449,462
Latest member
Chislobog

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