Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
In Excel 2000 I downloaded my annual TD Waterhouse
satement. It all downloads to one cel and trying to get just the last column into a susable for and separate it into a single column of its own is difficult. Thewre must be a simple way. Is here someone who might be able to talk back and forth with me to resolve? Thanks, Fil |
#2
![]() |
|||
|
|||
![]()
You can use this macro.
Sub extractlastcol() For Each c In Range("a2:a161") 'Selection x = Right(c, InStr(3, c, " ")) If IsNumeric(x) Then c.Offset(, 1) = x Next End Sub -- Don Guillett SalesAid Software "fil" wrote in message ... In Excel 2000 I downloaded my annual TD Waterhouse satement. It all downloads to one cel and trying to get just the last column into a susable for and separate it into a single column of its own is difficult. Thewre must be a simple way. Is here someone who might be able to talk back and forth with me to resolve? Thanks, Fil |
#3
![]() |
|||
|
|||
![]()
A small change to trim the text
Sub extractlastcol() 'Columns(2).ClearContents For Each c In Range("a2:a161") 'Selection x = Right(c, InStr(Trim(c), " ")) If IsNumeric(x) Then c.Offset(, 1) = x Next End Sub -- Don Guillett SalesAid Software "fil" wrote in message ... In Excel 2000 I downloaded my annual TD Waterhouse satement. It all downloads to one cel and trying to get just the last column into a susable for and separate it into a single column of its own is difficult. Thewre must be a simple way. Is here someone who might be able to talk back and forth with me to resolve? Thanks, Fil |
#4
![]() |
|||
|
|||
![]()
I have a TD Waterhouse account. I don't see the option to download, but I
simply displayed the statement via Internet Explorer, select the section of the statement under Date/Description/Distribution/..., copy, then PasteSpecial, Text. Text to Columns easily separated the columns. Same for the Transactions in the lower part of the statement. "fil" wrote in message ... In Excel 2000 I downloaded my annual TD Waterhouse satement. It all downloads to one cel and trying to get just the last column into a susable for and separate it into a single column of its own is difficult. Thewre must be a simple way. Is here someone who might be able to talk back and forth with me to resolve? Thanks, Fil |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Text to Columns - moves text up | Excel Discussion (Misc queries) | |||
How do I fix text wrapping in Excel? | Excel Discussion (Misc queries) | |||
Filtering Text Data from Multiple columns | Excel Worksheet Functions | |||
add text of 2 columns in Excel A+B=AB | Excel Worksheet Functions |