VBA-code shall not delete

KlausW

Active Member
Joined
Sep 9, 2020
Messages
378
Office Version
  1. 2016
Platform
  1. Windows
Hi
I found this VBA code on the internet, it does what I need.
The only thing I do not want it to do is that when I run the code, it deletes the entire sheet, it must not delete anything.

All help will be appreciated

Best regards Klaus W.

VBA Code:
Sub Rektangelafrundedehjørner1_Klik()

'Procedure to Consolidate all sheets in a workbook

On Error GoTo IfError

'1. Variables declaration

Dim Sht As Worksheet, DstSht As Worksheet

Dim LstRow As Long, LstCol As Long, DstRow As Long

Dim i As Integer, EnRange As String

Dim SrcRng As Range

'2. Disable Screen Updating - stop screen flickering

' And Disable Events to avoid inturupted dialogs / popups

With Application

.ScreenUpdating = False

.EnableEvents = False

End With

'3. Delete the Consolidate_Data WorkSheet if it exists

Application.DisplayAlerts = False

On Error Resume Next

ActiveWorkbook.Sheets("Consolidate_Data").Delete

Application.DisplayAlerts = True

'4. Add a new WorkSheet and name as 'Consolidate_Data'

With ActiveWorkbook

Set DstSht = .Sheets.Add(After:=.Sheets(.Sheets.Count))

DstSht.Name = "Consolidate_Data"

End With

'5. Loop through each WorkSheet in the workbook and copy the data to the 'Consolidate_Data' WorkSheet

For Each Sht In ActiveWorkbook.Worksheets

If Sht.Name <> DstSht.Name Then

'5.1: Find the last row on the 'Consolidate_Data' sheet

DstRow = fn_LastRow(DstSht)

'5.2: Find Input data range

LstRow = fn_LastRow(Sht)

LstCol = fn_LastColumn(Sht)

EnRange = Sht.Cells(LstRow, LstCol).Address

Set SrcRng = Sht.Range("a2:" & EnRange)

'5.3: Check whether there are enough rows in the 'Consolidate_Data' Worksheet

If DstRow + SrcRng.Rows.Count > DstSht.Rows.Count Then

MsgBox "There are not enough rows to place the data in the Consolidate_Data worksheet."

GoTo IfError

End If

'5.4: Copy data to the 'consolidated_data' WorkSheet

SrcRng.Copy Destination:=DstSht.Range("k" & DstRow + 1)

End If

Next

'DstSht.Range("A1") = "You can place the headeing in the first row"

IfError:

'6. Enable Screen Updating and Events

With Application

.ScreenUpdating = True

.EnableEvents = True

End With

End Sub
 
Yes the original code is cumbersome, terrible ! The author seems to not well know the Excel / VBA basics, using useless functions …​
It actually crashes, I have sent them an email notifying them, it will be interesting to see if they fix it.
 
Upvote 0

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Too many useless things within, must be recreated from a blank sheet ! The reason why I wrote in this thread post #16 …​
 
Upvote 0
Don't use the code you have it has an error in it. (Inconsistent use of variable names)

I have provided you a full set of working code please use that.
Hi Alex Blakenburg it does work, the only thing is that the code inserts the values in the wrong places. I would like it to put the dignitaries into K2 instead of K12656 as it does now. The error that comes is that the values are inserted in column K after the last formula in column A. Hope it makes sense. KW
 
Upvote 0
I would like it to put the dignitaries into K2 instead of K12656 as it does now.
My understanding is that this is dependent on the order in which the sheets are processed.
If you want a particular sheet to be consolidated first, then give me the sheet name and I will modify the code.
If you want all the sheets added in a specific order I will need all the sheet names in order.
The error that comes is that the values are inserted in column K after the last formula in column A.
What error ?
If the code errors out, what is the error message, and when click on debug which line in the code is highlighted?
 
Upvote 0
My understanding is that this is dependent on the order in which the sheets are processed.
If you want a particular sheet to be consolidated first, then give me the sheet name and I will modify the code.
If you want all the sheets added in a specific order I will need all the sheet names in order.

What error ?
If the code errors out, what is the error message, and when click on debug which line in the code is highlighted?
Hi again Alex Blakenburg
The code works well enough, the only thing I would like was the inserted value in K9 and down after. As it is now, the value is inserted according to the formulas in column A. See pic 1 is as it looks now, pic 2 is as it should look. Hope it makes sense. KW
 

Attachments

  • Pic1.png
    Pic1.png
    36.9 KB · Views: 11
  • Pic2.png
    Pic2.png
    26.1 KB · Views: 9
Upvote 0
It is quite late here in Australia, please also send me a picture of the sheet that data in column k is coming from.
I am guessing it doesn't start in A1.
I will then look tomorrow.
 
Upvote 0
It is quite late here in Australia, please also send me a picture of the sheet that data in column k is coming from.
I am guessing it doesn't start in A1.
I will then look tomorrow.
Thanks have a good night from Denmark KW
 
Upvote 0
the only thing I would like was the inserted value in K9 and down after.
Try this.
Replace the current section 5 with the below.
The changes are:
• Added this line before the For Each Sht
VBA Code:
DstRow = 9          ' XXX Klaus wanted the first copy at row 9
• Moved getting the value for DstRow that was inside the loop from the beginning to the end so that is uses the 9 above for the first pass.

section 5 replacement
From '5 to Next

VBA Code:
   '5. Loop through each WorkSheet in the workbook and copy the data to the 'Consolidate_Data' WorkSheet
    DstRow = 9          ' XXX Klaus wanted the first copy at row 9
    
    For Each Sht In ActiveWorkbook.Worksheets
        If Sht.Name <> DstSht.Name Then
            '5.2: Find Input data range
            LstRow = fn_LastRow(Sht)
            LstCol = fn_LastColumn(Sht)
            EnRange = Sht.Cells(LstRow, LstCol).Address
            Set SrcRng = Sht.Range("a2:" & EnRange)
            '5.3: Check whether there are enough rows in the 'Consolidate_Data' Worksheet
            If DstRow + SrcRng.Rows.Count > DstSht.Rows.Count Then
                MsgBox "There are not enough rows to place the data in the Consolidate_Data worksheet."
                GoTo IfError
            
            End If
            
            '5.4: Copy data to the 'consolidated_data' WorkSheet
            SrcRng.Copy Destination:=DstSht.Range("k" & DstRow + 1)
            
            '5.1: Find the last row on the 'Consolidate_Data' sheet for the next copy
            'Moved to end of loop not required for 1st pass
            DstRow = fn_LastRow(DstSht)
        End If
    
    Next
 
Upvote 0
Solution
Try this.
Replace the current section 5 with the below.
The changes are:
• Added this line before the For Each Sht
VBA Code:
DstRow = 9          ' XXX Klaus wanted the first copy at row 9
• Moved getting the value for DstRow that was inside the loop from the beginning to the end so that is uses the 9 above for the first pass.

section 5 replacement
From '5 to Next

VBA Code:
   '5. Loop through each WorkSheet in the workbook and copy the data to the 'Consolidate_Data' WorkSheet
    DstRow = 9          ' XXX Klaus wanted the first copy at row 9
   
    For Each Sht In ActiveWorkbook.Worksheets
        If Sht.Name <> DstSht.Name Then
            '5.2: Find Input data range
            LstRow = fn_LastRow(Sht)
            LstCol = fn_LastColumn(Sht)
            EnRange = Sht.Cells(LstRow, LstCol).Address
            Set SrcRng = Sht.Range("a2:" & EnRange)
            '5.3: Check whether there are enough rows in the 'Consolidate_Data' Worksheet
            If DstRow + SrcRng.Rows.Count > DstSht.Rows.Count Then
                MsgBox "There are not enough rows to place the data in the Consolidate_Data worksheet."
                GoTo IfError
           
            End If
           
            '5.4: Copy data to the 'consolidated_data' WorkSheet
            SrcRng.Copy Destination:=DstSht.Range("k" & DstRow + 1)
           
            '5.1: Find the last row on the 'Consolidate_Data' sheet for the next copy
            'Moved to end of loop not required for 1st pass
            DstRow = fn_LastRow(DstSht)
        End If
   
    Next
Hi Alex Blakenburg it works as it should, just what I wanted, after what I have tested, should be on course, so it will be first this weekend. Thanks for the help I will be right back if it's okay. Many thanks and day, many greetings from Denmark Klaus
 
Upvote 0
No problem, we will be here if you have questions. Thanks for the update.
It is always nice to know what time zone people are operating in, thank you for sharing.
 
Upvote 0

Forum statistics

Threads
1,214,385
Messages
6,119,210
Members
448,874
Latest member
b1step2far

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