Formulas being modified by VBA code unintentionally

UncleBajubjubs

Board Regular
Joined
Jul 11, 2017
Messages
111
Office Version
  1. 2010
Hello, I have a workbook used to determine the cost of constructing machinery. There is one worksheet which is a massive list of parts (bolts, screws, etc.) and their costs. The user will select what parts they need on other sheets, and their are cells to multiply the cost of what they need by the number selected.

As the prices of things change, the parts sheet is updated frequently, so there is a VBA button to update the parts sheet with a file saved on a network folder. This is meant to erase the parts sheet and replace it with the new data. Unfortunately, It shifts the data 13 cells to the right, and moves the cells in formulas 13 spaces to the right.

For instance, if I currently have a formula on another worksheet look up Parts!$A1, after running the formula, it will now look up Parts!$N1. So it continues to look up the old data.

The code currently is:

<code>
Dim bUsername As String
Dim PartsPath As String


Dim xConnect As Object '' this is code to delete all existing data connections
For Each xConnect In ActiveWorkbook.Connections
If xConnect.Name <> "ThisWorkbookDataModel" Then xConnect.Delete
Next xConnect




bUsername = Environ$("username")


Select Case bUsername
Case "exampleuser"
PartsPath = "FILepath.html"

Worksheets("Parts").Activate 'activates parts, goes to the URL specified by PartsPath variable, and pulls in the tables
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;" & PartsPath, Destination:= _
Range("$A$1"))
.Name = "parts_1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlAllTables
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With

MsgBox "Parts connection successful for " & bUsername & ". Parts path is " & PartsPath
Worksheets("MAIN WORKSHEET").Activate

</code>

I'm at a loss here, any ideas?
Thank you.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
UncleBajubjubs, try the below in a sample file - Take backup of your original file

Replace this line of code
Code:
.RefreshStyle = xlInsertDeleteCells

with this
Code:
.RefreshStyle = xlOverwriteCells
 
Upvote 0

Forum statistics

Threads
1,216,342
Messages
6,130,114
Members
449,558
Latest member
andyamcconnell

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