Macro taking long time to execute.

vinod9111

Active Member
Joined
Jan 21, 2009
Messages
426
Hi all,

Have to generate 640 files basis district name. The output sheets are formula based , they pull the data from input sheets. Mostly the sumifs formula is used. It takes almost 5 minutes to generate one single file. Perhaps with each change of district the calculation features takes time to populate the figures resulting in lot of time taken for file generation.

Below have posted the codes, request you to give your valuable input to speed up the macro.=


Sub multplrept()
Dim dist As Range, curwbk As Workbook, newwb As Workbook, filname As String, foldername As String, sh As Worksheet
With Application
.ScreenUpdating = False
.DisplayAlerts = False
End With
Set curwbk = ActiveWorkbook
foldername = curwbk.Path & "" & "LBR"
MkDir foldername


For Each dist In Range("distlist")
[distname] = dist.Value
DoEvents


filname = Worksheets("disbursement").Range("M1").Value


Sheets(Array("LBR_2_U2", "LBR_3_U3", "LBR_3_U3_B", "Banking Statistics - 1", "Banking Statistics - 2", "Banking Statistics - 3", "Banking Statistics - 4", "Doubling of Agricultural Credit", "Gist for Meeting", "LBS-MIS")).Copy


Set newwb = ActiveWorkbook
For Each sh In ActiveWorkbook.Worksheets
With sh.UsedRange
.Value = .Value
End With
Next sh
Range("a1").Select
newwb.SaveAs foldername & "" & filname & ".xlsx", FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
newwb.Close False
curwbk.Activate




Next
With Application
.ScreenUpdating = True
.DisplayAlerts = True
End With
End Sub

Any help will be highly appreciated.

regards

Vinod
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
try like this:
Code:
Sub multplrept()
    Dim dist As Range, curwbk As Workbook, newwb As Workbook, filname As String, foldername As String, sh As Worksheet
    With Application
        .ScreenUpdating = False
        .DisplayAlerts = False
    End With
    Set curwbk = ActiveWorkbook
    foldername = curwbk.Path & "" & "LBR"
    MkDir foldername
    
    For Each dist In Range("distlist")
        [distname] = dist.Value
        DoEvents
        filname = Worksheets("disbursement").Range("M1").Value


        Application.Calculation = xlCalculationManual
            Sheets(Array("LBR_2_U2", "LBR_3_U3", "LBR_3_U3_B", "Banking Statistics - 1", "Banking Statistics - 2", "Banking Statistics - 3", "Banking Statistics - 4", "Doubling of Agricultural Credit", "Gist for Meeting", "LBS-MIS")).Copy
    
            Set newwb = ActiveWorkbook
            For Each sh In newwb.Worksheets
                With sh.UsedRange
                     .Value = .Value
                End With
            Next sh
            newwb.SaveAs foldername & "" & filname & ".xlsx", FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
            newwb.Close False
            curwbk.Activate
        Application.Calculation = xlCalculationAutomatic
    Next
    
    With Application
        .ScreenUpdating = True
        .DisplayAlerts = True
    End With
End Sub
still depending on the amount of information the process may take some time. Did you try to make it manually for 1 file and try to time it?
I am not 100% sure but I think you can remove DoEvents to save some more time.
 
Last edited:
Upvote 0
Hi Bobsan42,

Thanks for your help, with your suggested changes time has come down from 6 minutes to 1.5 minutes for generation of file.

It will save considerable time. The file is bulky,probably it is taking more time.

Regards,

Vinod
 
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

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