The Shifty Lie of a Query Table

D

DynamiteSkippy

I am trying to leverage a query table’s refresh ability with a simple txt
file import. I am having a problem with the Query table shifting columns over
when the query table code is run. I need to have the query table to simply
‘paste’ into worksheet as if I selected Cells(1,1) and pasted them in. At
first I thought there should be a parameter or option to do this but I have
not found one. Does anyone know how to do this?

Private Sub OpenFile( cflaSpec As Range)
Dim FileDir As QueryTable
Dim DirPath As String
'Initialize
DirPath = "\\gershwin\majorprojects\CFLA\CFLAReportName & ".txt"
Set ProperPallet = ActiveWorkbook.Worksheets.Add
Set FileDir = ProperPallet.QueryTables.Add( _
Connection:="TEXT;" & DirPath, _
Destination:=wksht.Cells(1, 1) _
)
With FileDir
.TextFileParseType = xlDelimited
.TextFileOtherDelimiter = "|"
.Refresh
End With
Wksht.name= UCase(cflaSpec)
End Sub
 
R

Ron Coderre

Add this line just before the Refresh line in your code:

..RefreshStyle = xlOverwriteCells

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
D

DynamiteSkippy

Works Perfectly... Thanks Ron

-D

Ron Coderre said:
Add this line just before the Refresh line in your code:

.RefreshStyle = xlOverwriteCells

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top