设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1941|回复: 2
打印 上一主题 下一主题

橫向排序求助

[复制链接]
跳转到指定楼层
1#
发表于 2006-11-18 22:56:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
excel里如何實現橫向由小到大排序?

請大俠編程實現!



謝謝!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2006-11-21 09:03:00 | 只看该作者
Sub 宏1()

' 橫向由小到大排序


    Range("A1:J1").Select
   
    Selection.Copy
   
    Range("AA1").Select
   
    Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _
        , Transpose:=True
   
    Application.CutCopyMode = False
   
    Selection.Sort Key1:=Range("AA1"), Order1:=xlAscending, Header:=xlGuess, _
        OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, SortMethod _
        :=xlPinYin
   
    Selection.Copy
   
    Range("A1").Select
   
    Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _
             , Transpose:=True
   
    Range("AA1:AA20").Select
   
    Application.CutCopyMode = False
   
    Selection.ClearContents

End Sub




不知道,行不行?

橫向数据如果在 A1:J1,共十个;

列AA,是空闲的列.
3#
发表于 2006-11-21 19:08:00 | 只看该作者
对当前光标所在的行进行横向排序。

Sub SortByRow()
'**********************
'  2006-11-21 Aaron
'**********************
Dim Ld(1 To 255) As Variant, I, J As Integer
Dim Mvalue As Variant, MI As Integer, Crow As Long, Ccol As Integer

Crow = ActiveCell.Row                            'Get current row no.
Ccol = Cells(Crow, 255).End(xlToLeft).Column     'Get urrent row range last column no.

For I = 1 To Ccol - 1
    Mvalue = Cells(Crow, I).Value                     'Save first cell value to variant
    MI = I                                            'Save column no. to variant
   For J = I + 1 To Ccol
      If Cells(Crow, J).Value < Mvalue Then            'if latter cell value less than var Mvalue, replace it
         Mvalue = Cells(Crow, J).Value
         MI = J
       End If
   Next J
   Cells(Crow, MI).Value = Cells(Crow, I).Value       'exchange the minimal cells' value
   Cells(Crow, I).Value = Mvalue
Next I

If Len(Cells(Crow, 1)) = 0 Then
   Range(Cells(Crow, 1), Cells(Crow, Cells(Crow, 1).End(xlToRight).Column - 1)).Delete Shift:=xlToLeft   'Delete blank cell in head column
End If

End Sub
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-1-10 00:47 , Processed in 0.093018 second(s), 26 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表