jcbetanzos

New Member
Joined
Apr 24, 2017
Messages
5
Hello,

I requested help a few month ago with this code, I was able to find a solution and customized like the following:

Code:
Sub Externalabelshn()    '
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    Application.EnableEvents = False
    ActiveSheet.DisplayPageBreaks = False
    
    Sheets("EXTERNAL LABELS").Activate
    ActiveWorkbook.Unprotect Password:="password"
    ActiveSheet.Unprotect Password:="password"
    
        If Range("B2") = "" Then
            MsgBox "Please add a valid Part Number in cell B2 and try Again"
        Exit Sub
    
        Else
        On Error Resume Next
            Range("E2:H2").Copy Destination:=Range("(E2:H2):E" & Range("B" & Rows.Count).End(xlUp).Row)
        End If
    
    On Error Resume Next
    If Not IsEmpty(ActiveCell.Value) Then
            myLastRow = Range("B2").SpecialCells(xlLastCell).Row
            Range("B2:B" & myLastRow).SpecialCells(xlCellTypeBlanks).EntireRow.Delete
    End If
    
    ActiveSheet.EnableSelection = xlUnlockedCells
    ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, Password:="password"
    ActiveWorkbook.Protect Structure:=True, Windows:=False, Password:="password"
    
    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
    Application.EnableEvents = True
    ActiveSheet.DisplayPageBreaks = True
    Application.CutCopyMode = False
    
    ActiveWorkbook.Save
    
End Sub

This code is assigned to a button but sometimes (just some weird times) when I run it deletes the all active sheet, any suggestions to avoid this?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
.
Your original post wherein Fluff provided code suggestions ... you indicated you only wanted to copy data and not delete empty rows/cells.

This somewhat matches your intermittent issues of the entire sheet being cleared.

The only line in your posted code that deletes anything is :

Code:
If Not IsEmpty(ActiveCell.Value) Then
            myLastRow = Range("B2").SpecialCells(xlLastCell).Row
            Range("B2:B" & myLastRow).SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End If

If you delete those lines of code you will have achieved your original request in the other thread, plus prevent the deletion of any data
in your current project (posted in this thread).
 
Upvote 0

Forum statistics

Threads
1,214,824
Messages
6,121,784
Members
449,049
Latest member
greyangel23

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