Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
mzehr
 
Posts: n/a
Default Offer a feature to disable the sort warning in Excel 2003

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc
  #2   Report Post  
ESquared
 
Posts: n/a
Default

And not just the sort warning for adjacent data found, but also the sort
warning for "numbers and numbers stored as text". These should be
independently set. I am working with a worksheet that has, for example, zip
codes, with leading zeroes. In order to preserve the leading zeroes I must
either put in some funky custom formatting (which I don't want to do) or I
just make the column text. Usually when I am working with this sort of thing,
I don't care if these columns sort as numbers or as text, because I am doing
data cleanup where I am more interested in grouping and unusual values than
in the exact order.

I can't tell you how many times the "new features to help those poor stupid
Office users do their work better" have resulted in total aggravation for me,
someone who DOES know how to use software. I don't want my hand held. I don't
want to be taken places I don't want to go. And I don't want 'help' coming up
EVERY SINGLE FNOODLING TIME I'm doing something in my normal workflow,
requiring me to answer stupid questions when I want to work smoothly and
efficiently.

For what it's worth, I like the warning about adjacent data when I'm
sorting. But one should always have the ability to turn off warnings and
features one doesn't like.

-ESquared

"mzehr" wrote:

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

  #3   Report Post  
Posted to microsoft.public.excel.misc
mnature
 
Posts: n/a
Default Offer a feature to disable the sort warning in Excel 2003

I think ALL warnings should be capable of being toggled. There are times
when a warning is nice, and there are times when a warning is just a pain.

"mzehr" wrote:

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Offer a feature to disable the sort warning in Excel 2003

I am doing 3 clicks where I should only have to do one so it is increasing my
work time 200% (actually more because I then have to move the mouse to the
right area to click) and it is driving my nuts (not to mention playing havoc
with my arthritis). I have dozens of columns that each have to be sorted
indepently and to not be able to turn this annoying prompt off is making me
want to find other software.

"mzehr" wrote:

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Offer a feature to disable the sort warning in Excel 2003

While waiting for the developers to comply, do you want a single-click on a
button macro that sorts only the selected column?

Sub sort_selected_column()
Dim srng As Range
Set srng = Range(ActiveCell, Cells(Rows.Count, _
ActiveCell.Column).End(xlUp))
srng.Sort Key1:=Range(srng.Cells(2).Address), _
Order1:=xlAscending, Header:=xlYes, _
OrderCustom:=2, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
End Sub


Gord Dibben MS Excel MVP


On Tue, 2 Feb 2010 12:46:08 -0800, dkat
wrote:

I am doing 3 clicks where I should only have to do one so it is increasing my
work time 200% (actually more because I then have to move the mouse to the
right area to click) and it is driving my nuts (not to mention playing havoc
with my arthritis). I have dozens of columns that each have to be sorted
indepently and to not be able to turn this annoying prompt off is making me
want to find other software.

"mzehr" wrote:

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc




  #6   Report Post  
Junior Member
 
Posts: 3
Thumbs up

I totally agree.

It is ok that people need to be properly trained in the use of excel and in paying attention to what they are doing, but that hideous message when I am sorting just increases my work time and I receive it every single time.

Any solution to disable that warning message? THANKS.

Quote:
Originally Posted by ESquared View Post
And not just the sort warning for adjacent data found, but also the sort
warning for "numbers and numbers stored as text". These should be
independently set. I am working with a worksheet that has, for example, zip
codes, with leading zeroes. In order to preserve the leading zeroes I must
either put in some funky custom formatting (which I don't want to do) or I
just make the column text. Usually when I am working with this sort of thing,
I don't care if these columns sort as numbers or as text, because I am doing
data cleanup where I am more interested in grouping and unusual values than
in the exact order.

I can't tell you how many times the "new features to help those poor stupid
Office users do their work better" have resulted in total aggravation for me,
someone who DOES know how to use software. I don't want my hand held. I don't
want to be taken places I don't want to go. And I don't want 'help' coming up
EVERY SINGLE FNOODLING TIME I'm doing something in my normal workflow,
requiring me to answer stupid questions when I want to work smoothly and
efficiently.

For what it's worth, I like the warning about adjacent data when I'm
sorting. But one should always have the ability to turn off warnings and
features one doesn't like.

-ESquared

"mzehr" wrote:

This is just a suggestion to MS. Feel free to add your opinion if you wish.
Excel should offer a feature to allow experienced users to disable the sort
warning in Excel 2003 that pops up everytime you select a range that has info
in any of the cells contiguous with that range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc
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
Disable Query Refresh warning dialog box in Excel 2003 Jeff Koons Excel Discussion (Misc queries) 2 December 1st 05 04:08 PM
How do I disable the auto hyperlink feature in Excel? DougJ Excel Discussion (Misc queries) 1 April 15th 05 04:37 PM
how do i disable warning when saving file in csv format? Anatoly Larkin Excel Discussion (Misc queries) 0 March 16th 05 09:21 PM
disable macro warning kim Excel Discussion (Misc queries) 2 December 30th 04 05:57 PM
Disable automatic date conversion feature iceseal Excel Worksheet Functions 2 November 12th 04 03:04 AM


All times are GMT +1. The time now is 09:43 PM.

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

About Us

"It's about Microsoft Excel"