LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Creating xla file to clear junk and sort reqd data

Thanx... it worked !!!

I was getting warning to replace rows while the system was performing
text to column. I set the warning to FALSE in the beginning and TRUE
at the end.

Thank you very much

On Oct 12, 1:19*am, "Peter T" <peter_t@discussions wrote:
Have a go with this

Sub DelAndSort2()
* * Range("A:A,C:C,E:F").Delete

* * ' copy values in col-B to col-C
* * Range("C:C").Value = Range("B:B").Value

* * ' text to columns, "-" separator

* * Range("C:C").TextToColumns Destination:=Range("C1"), _
* * * * * * DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
* * * * * * ConsecutiveDelimiter:=False, Tab:=False, Semicolon:=False, _
* * * * * * Comma:=False, Space:=False, Other:=True, OtherChar:="-", _
* * * * * * FieldInfo:=Array(Array(1, 1), Array(2, 1)),
TrailingMinusNumbers:=True

* * Range("C1") = "Temp" ' ensure there's a header cell

* * ' sort on col C
* * Columns("A:D").Sort Key1:=Range("C2"), _
* * * * * * * * * * * * Order1:=xlAscending, Header:=xlYes, _
* * * * * * * * * * * * OrderCustom:=1, MatchCase:=False, _
* * * * * * * * * * * * Orientation:=xlTopToBottom, _
* * * * * * * * * * * * DataOption1:=xlSortNormal

* * Range("C:D").Delete
End Sub

Regards,
Peter T



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
i AM CREATING A DATA AND WANT TO SORT, BUT KEEP DATA TOGETHER lolly57 Excel Worksheet Functions 3 October 8th 08 07:56 PM
Email downloads into a single Excel cell - data separation reqd. MSA Excel Programming 1 March 4th 08 04:57 PM
Junk Characters in Excel Documents Alvan Excel Discussion (Misc queries) 1 August 26th 07 05:12 PM
Creating a graph with existing data...clear data after save Cam Neeson Excel Programming 3 June 15th 06 06:37 PM
delete blocked senders messages on receipt why junk mail them? yralih Excel Discussion (Misc queries) 1 July 17th 05 01:09 AM


All times are GMT +1. The time now is 09:36 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"