英文:
Can a window of excel (for example "custom sort" window) appear by macro?
问题
我不想通过VBA对范围进行排序,因为排序窗口更通用并提供更多选择。在Excel中,排序窗口可以通过快捷键“Alt + H + S + U”来打开。但我们是否可以编写一个宏来(选择工作表的特定范围并)显示此窗口?
英文:
I do not want to sort a range by VBA because the sort window is more general and give more selection. The sort window in excel can appear by the shortcut: "Alt + H + S + U". But can we write a macro that (select a special range of a sheet and) show this window?
答案1
得分: 3
如果活动单元格可筛选,则使用:
Application.Dialogs(xlDialogSort).Show
英文:
If the activecell is filterable then use:
> Application.Dialogs(xlDialogSort).Show
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论