VBA Copy Paste Values Offset

lager1001

Board Regular
Joined
May 17, 2019
Messages
88
Copy Paste Special Values Question:

Below is the code

Sheets("Packet").Range("C4").Copy
Sheets("Track Packet").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False

The problem I am having is that if nothing is in Range C4 on any given day then it writes a blank. Then the next day the offset is is pasting whatever is in C4 that day into the previous days' row. How can I force it to include a zero if the copied cell is blank, thus insuring that the offset will remain true day to day?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
How about
VBA Code:
With Sheets("Track Packet").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
   If Sheets("Packet").Range("C4") = "" Then
      .Value = 0
   Else
      .Value = Sheets("Packet").Range("C4").Value
   End If
End With
 
Upvote 0
How about
VBA Code:
With Sheets("Track Packet").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
   If Sheets("Packet").Range("C4") = "" Then
      .Value = 0
   Else
      .Value = Sheets("Packet").Range("C4").Value
   End If
End With
This is working!. Thank you!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,537
Members
449,088
Latest member
RandomExceller01

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