Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how do i sort my excel worksheet in

how do i sort my names in excel in alphabetical order thankyou
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default how do i sort my excel worksheet in

Refer
http://www.contextures.com/xlSort01.html

If this post helps click Yes
---------------
Jacob Skaria


"miabelladolce" wrote:

how do i sort my names in excel in alphabetical order thankyou

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 806
Default how do i sort my excel worksheet in

Hello,

See here, please:
http://sulprobil.com/html/sorting.html

Regards,
Bernd
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default how do i sort my excel worksheet in

Hi,

Put this code in any worksheet module and run it

Sub Sortem()
For X = 1 To Worksheets.Count
For y = X To Worksheets.Count
If UCase(Sheets(y).Name) < UCase(Sheets(X).Name) Then
Sheets(y).Move Befo=Sheets(X)
End If
Next
Next
End Sub

Mike

"miabelladolce" wrote:

how do i sort my names in excel in alphabetical order thankyou

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default how do i sort my excel worksheet in

Ignore, I misread your post

"Mike H" wrote:

Hi,

Put this code in any worksheet module and run it

Sub Sortem()
For X = 1 To Worksheets.Count
For y = X To Worksheets.Count
If UCase(Sheets(y).Name) < UCase(Sheets(X).Name) Then
Sheets(y).Move Befo=Sheets(X)
End If
Next
Next
End Sub

Mike

"miabelladolce" wrote:

how do i sort my names in excel in alphabetical order thankyou



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default sort

go Data tool-sort-select ur named column-asending-clik ok



miabelladolce wrote:

how do i sort my excel worksheet in
21-Sep-09

how do i sort my names in excel in alphabetical order thankyou

EggHeadCafe - Software Developer Portal of Choice
WPF And The Model View View Model Pattern
http://www.eggheadcafe.com/tutorials...l-view-vi.aspx
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default how do i sort my excel worksheet in


I have posted a question on the same issue, and as I can't find it in the
forum, let me come in here. I am sorting 2 columnes according to the
instructions given in your link. However the second columne is sorted in kind
of groups. First come a-words, then some d-words, then some a-words again
(and so on). What could be the reason for this strange behaviour on the
second columne?
--
BEO


"Jacob Skaria" wrote:

Refer
http://www.contextures.com/xlSort01.html

If this post helps click Yes
---------------
Jacob Skaria


"miabelladolce" wrote:

how do i sort my names in excel in alphabetical order thankyou

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 915
Default how do i sort my excel worksheet in

BEOPS wrote:
I have posted a question on the same issue, and as I can't find it in the
forum, let me come in here. I am sorting 2 columnes according to the
instructions given in your link. However the second columne is sorted in kind
of groups. First come a-words, then some d-words, then some a-words again
(and so on). What could be the reason for this strange behaviour on the
second columne?


Answered yesterday. You should be able to see the response he

http://preview.tinyurl.com/yflmtrh
  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default how do i sort my excel worksheet in

I got the answer. By a LEN function I discovered a space after some words.
Thanks
--
BEO


"smartin" wrote:

BEOPS wrote:
I have posted a question on the same issue, and as I can't find it in the
forum, let me come in here. I am sorting 2 columnes according to the
instructions given in your link. However the second columne is sorted in kind
of groups. First come a-words, then some d-words, then some a-words again
(and so on). What could be the reason for this strange behaviour on the
second columne?


Answered yesterday. You should be able to see the response he

http://preview.tinyurl.com/yflmtrh
.

Reply
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
XP EXCEL WORKSHEET WILL NOT SORT. HOW TO FIX frank Excel Worksheet Functions 1 November 21st 07 07:53 PM
Excel 2002 Worksheet: Can I sort the columns ? Mr. Low Excel Discussion (Misc queries) 3 October 6th 07 12:44 AM
sort excel worksheet Per Excel Worksheet Functions 6 March 12th 07 05:28 PM
Why can't I sort a worksheet in Excel? Littlegenie Excel Discussion (Misc queries) 3 December 15th 06 09:44 PM
How do I sort an excel worksheet with the if-then features? Carlyne Excel Worksheet Functions 2 December 28th 04 04:43 PM


All times are GMT +1. The time now is 06:28 PM.

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"