Excel 2007 VBA code help for copying data from a SQL server file

dangerousdaveeg

New Member
Joined
Mar 30, 2012
Messages
8
Office Version
  1. 2013
Platform
  1. Windows
What I am having trouble with is that I have a SQL server report that gets generated every day and placed in a set location.

My report has some macros to delete the last set of data copied and then update it with the fresh set of data, However though even when I move the SQL server report so that the next one will generate and takes it place when i run my macro I am still pulling the data from the previous report and not the new one that has been generated.

anyone got any ideas what might be going wrong?

Here is the code I am using

Sub Delete()
'
' Delete Macro
'

'
Range("B2:F130").Select
Selection.ClearContents
ActiveWindow.SmallScroll Down:=-126
Workbooks.Open Filename:= _
"P:\membership services\operations\Automated Reports\Agent Daily Summary.xls"
ActiveWindow.SmallScroll Down:=-12
Range("C5:G130").Select
Selection.Copy
Windows("Daily Stats Master.xlsm").Activate
ActiveWindow.SmallScroll Down:=-9
Range("B2").Select
ActiveSheet.Paste
End Sub


Any help will be much appreciated as I just cant seem to figure out why it does not look at the new file, the SQL server reports are always called the same thing but once used they are moved to a new location and called something different.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().

Forum statistics

Threads
1,214,528
Messages
6,120,065
Members
448,941
Latest member
AlphaRino

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