to read text tablimited file

P

pol

Hi all

I have a text tablimited file in c:\excel macros folder with the following
format. Please let me know how I can read that file from that folder and to
store in a vriable

1 Description1
2 Description2
3 Description3
4 Description4



Columns("P:p").Select
Range("P1").Activate

Selection.Replace What:="1", Replacement:="Description1",
LookAt:=xlWhole, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False

Selection.Replace What:="2", Replacement:="Description2",
LookAt:=xlWhole, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False

With Regards

Pol
 
P

pol

if the excel file in P:p range , have the value any one of data in the
textfile 1 or 2, or I want to replace with corresponding description
 
P

pol

if the excel file in P:p range , have the value any one of data in the
textfile 1 or 2, or I want to replace with corresponding description
 
J

Joel

The code below uses a dailog box to open the tab delimited file. the code
creates a tempory workbook with the tab data and then replaces everyting in
column P according to the Tab file.


Sub Replacetext()

Set ModifySht = ActiveSheet

filetoopen = Application _
.GetOpenFilename("Text Files (*.txt), *.txt")
If filetoopen = False Then
MsgBox ("Cannot Open File - Exiting Macro")
Exit Sub
End If

Set newbk = Workbooks.Add
Set TmpSht = newbk.Sheets(1)

With TmpSht.QueryTables.Add( _
Connection:="TEXT;" & filetoopen, _
Destination:=Range("A1"))
.Name = "tabfile"
.SaveData = True
.AdjustColumnWidth = True
.TextFileParseType = xlDelimited
.TextFileTabDelimiter = True
.Refresh BackgroundQuery:=False
End With


With TmpSht
RowCount = 1
Do While .Range("A" & RowCount) <> ""
OldData = .Range("A" & RowCount)
NewsData = .Range("B" & RowCount)

ModifySht.Columns("P").Replace _
What:=OldData, _
Replacement:=NewData, _
LookAt:=xlWhole

RowCount = RowCount + 1
Loop

End With

newbk.Close savechanges:=False
End Sub
 
J

Joel

The code below uses a dailog box to open the tab delimited file. the code
creates a tempory workbook with the tab data and then replaces everyting in
column P according to the Tab file.


Sub Replacetext()

Set ModifySht = ActiveSheet

filetoopen = Application _
.GetOpenFilename("Text Files (*.txt), *.txt")
If filetoopen = False Then
MsgBox ("Cannot Open File - Exiting Macro")
Exit Sub
End If

Set newbk = Workbooks.Add
Set TmpSht = newbk.Sheets(1)

With TmpSht.QueryTables.Add( _
Connection:="TEXT;" & filetoopen, _
Destination:=Range("A1"))
.Name = "tabfile"
.SaveData = True
.AdjustColumnWidth = True
.TextFileParseType = xlDelimited
.TextFileTabDelimiter = True
.Refresh BackgroundQuery:=False
End With


With TmpSht
RowCount = 1
Do While .Range("A" & RowCount) <> ""
OldData = .Range("A" & RowCount)
NewsData = .Range("B" & RowCount)

ModifySht.Columns("P").Replace _
What:=OldData, _
Replacement:=NewData, _
LookAt:=xlWhole

RowCount = RowCount + 1
Loop

End With

newbk.Close savechanges:=False
End Sub
 

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

Similar Threads


Top