Prompted by a thread involving sorting by colour it set me wondering what stuff people would really like to see in Excel. I must admit colour sorting wouldn't have been high on my list of priorities.
Is there in fact a forum/route to notify wish list items for MS to pick up on?
The functionality that always annoys me is when selecting a range for advance filtering and then finishing with the copy to location on another sheet, getting the unhelpful message 'you can only copy filtered data to the active sheet'. It seems so counter intuitive.
Not only that but when you do start out on the 'Active' sheet label, the one to which you want the filtered data to appear, you get the even more annoying message that says you must select at least two rows, and then to add insult to injury when you do select more than two rows Excel becomes yet more annoying and tells me that it can't determine which rows contain the label and you have to jump back to the origin sheet.
Is there anything more annoying than this? Or have I been doing it wrong all these years
I'd like to see this fixed.
What deficiencies annoy others and what additional functionality would you like?
Regards
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
Hi Richard,
Try http://excelsemipro.com/2011/03/copy...vanced-filter/ or
http://ddalgleish.hubpages.com/hub/F...ifferent-Sheet
I do not like the database functions (like DSum or DMax) to need a criteria range to work correctly. I'd like the database functions to be able to work without needing a range for the criteria. Somehow Excel should allow a non range parameteter to pick up the criteria. Or am I missing something?
One test is worth a thousand opinions.
Click the * below to say thanks.
Thanks Marvin,
I never knew selecting a cell not adjacent to the label overcame that stuff about selecting more than one row etc. You do indeed learn something new every day. I am indebted. I still think the process is counter intuitive, having to start with the destination but there you go.
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
I'd like Page Layout view in Excel 2010 to go away. Users at my company foolishly use the "Insert" -> "Header & Footer" (the only option apparent on the ribbon). Then they sit in this view all day. Well, there is a glitch with this view where, at random times, Excel selects multiple cells when a single cell is clicked. The only way to stop it from doing this is to get out of Page Layout view. I get calls at least once a week by people saying "Excel keeps selecting a bunch of cells when I click! Help!". Ugh.
It'd be nice if Sharing a workbook didn't have so many glitches either.
Oh, and the Formula Evaluator box needs to be expandable, for when you work with array formulas.
Last edited by Whizbang; 01-11-2012 at 09:59 AM.
A concatenate formula that takes parameters, e.g.
=concatenate(Range, separator)
=concatenate(A1:A10,"-")
You get the drift...
The one my coworkers and I are always looking for is a true 3D scatter plot.
"May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."
Use code tags when posting your VBA code: [code] Your code here [/code]
Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.
Agree. I've mentioned this few years ago. I think it would have usage more far than just concatenating words...
But I've got this UDF as answer so I'm transfering it further
Select result cell then - In the formula bar typeFunction ConcatRow(Rng As Range, Optional Separator As String) Dim r As Integer, c As Integer Dim StartCol As Integer, EndCol As Integer With Rng r = .Row StartCol = .Column EndCol = .End(xlToRight).Column End With For c = StartCol To EndCol ConcatRow = ConcatRow & Cells(r, c) & Separator Next ConcatRow = Left(ConcatRow, Len(ConcatRow) - 1) End Function
=ConcatRow(A1:D1,":")
"Relax. What is mind? No matter. What is matter? Never mind!"
zbor, that's the thing. UDFs for that functionality have been around since the dinosaurs. I marvel at why Microsoft never made it a feature, since it's really not all that hard to do.
domski: yes, very evil
mrshorty: how would you determine where exactly a data point sits with a 3D scatter plot? Start with a 3D clustered column chart and place a dot at the tops of each column. Set the column format to no fill and no line. There's what a 3D scatter chart would look like. Nobody would be able to see what position a single plot point would have in relation to the three axes.
'Require variable declaration' should be the default option in the VBE
Split and Join functions for the worksheet (the latter basically being the range concatenate already mentioned)
A Vlookup function that allows you to specify lookup range, return range and result number.
A VisibleRows function
An Array function
Data Validation that allows you to use a function to create a list.
All functions to be able to take arrays as well as ranges.
A range_click event.
A BeforePrintPreview event separate from the BeforePrint
And probably a thousand other things.
Last edited by OnErrorGoto0; 01-12-2012 at 04:40 AM.
Good luck.
non contiguous arrays would be handy
and a columns to column or columns to row function instead of just transpose
and an automatic coffee making function of course
and any of the functions in the more func add-in or those by asap utilities added as standard would be useful.
infact
get microsoft to buy out bastien mensink and Laurent Longre ,making them very rich and us all very happy
Last edited by martindwilson; 01-13-2012 at 07:55 AM.
"Unless otherwise stated all my comments are directed at OP"
Mojito connoisseur and a dabbler in Cisco
where does code go ?
look here
how to insert code
how to enter array formula
why use -- in sumproduct
recommended reading
wiki Mojito
how to say no convincingly
most important thing you need
Martin Wilson: SPV
and RSMBC
inArray function
auto-indentation in vba editor
More options in form-design
Better security on workbooks.
If I draw all these together, does anyone know to where they could be submitted within the Microsoft Corp?
Regards
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
There was a website set up by a couple of MS employees for Office suggestions but it seems to have lapsed. Perhaps one of the MVPs here could pass the list on.
Good luck.
Vertical center across selection.
Is your code running too slowly?
Does your workbook or database have a bunch of duplicate pieces of data?
Have a look at this article to learn the best ways to set up your projects.
It will save both time and effort in the long run!
Dave
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks