Disabling certain codes

interface

New Member
Joined
Jul 10, 2019
Messages
6
Hi experts and gurus,

I have referenced the following code to call the workbook to open if not open and then copy data from one of the sheet and paste them in the sheet of another workbook (move or copy and check copy).

Function Code:
Code:
Function checkFileIsOpen(chkSumFile As String) As Boolean

On Error Resume Next
checkFileIsOpen = (Workbooks(chkSumFile).Name = chkSumFile)

On Error GoTo 0

End Function

Move or copy code:

Code:
Private Sub MoveOrCopy()

Dim wb1 As Workbook
Dim wb2 As Workbook
Dim sh3 As Worksheet

Application.DisplayAlerts = False

Set wb1 = Workbooks("Germany.xlsx")
Set wb2 = Workbooks("Canada.xlsm")
Set sh3 = Worksheets("Ambience")

Workbooks("Germany.xlsx").Sheets("Ambience").Range("A1:J2000").Copy _
    Destination:=Workbooks("Canada.xlsm").Sheets("Ambience").Range("A1")

Application.DisplayAlerts = True

End Sub

Now I would want to disable these codes (both MoveOrCopy and the function codes) if the sheet in that another workbook contains data and is not empty. If the sheet in that another workbook is empty then run the codes.

Thanks
Roshan Shakya
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
try this function in an IF statement:
Code:
Function SheetIsBlank(ByVal wsh As Worksheet) As Boolean    On Error Resume Next
    Dim rng As Range
    Set rng = wsh.UsedRange
    If rng Is Nothing Then Exit Function
    
    Dim j As Long
    Err.Clear
    j = rng.SpecialCells(xlCellTypeConstants).Count
    j = j + rng.SpecialCells(xlCellTypeFormulas).Count
    SheetIsBlank = (j = 0) 'IsNull(i) '(Err.Number <> 0)


    Set rng = Nothing
End Function
something like:
Code:
if sheetisblank([COLOR=#ff0000]workbooks(1).sheets(1)[/COLOR]) then MoveOrCopy
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,202
Members
448,554
Latest member
Gleisner2

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