I have a workbook that will not let me glide around by clicking and holding the middle mouse button.
I've seen a lot of answers and help around basic scrolling with the mouse, but that's working fine in this case. It's when I hold down the button, nothing happens. It works on other spreadsheets I have open at the same time so the problem must be specifically with that workbook.
I seem to remember having the same trouble long ago with a single sheet in a book.
Any ideas? The workbook does have a lot of VBA, but I've been unable to detect any part which would affect this. Could there be something buried in that?
aha, someone at work figured it out. It happens when you've hidden columns all the way to the end of the sheet. I've unhidden them and am gliding around easy again.
Related
One of the sheets in my workbook has been imported from another workbook. On this particular sheet, scrolling (with my mouse wheel) is somehow disabled. I can scroll just fine on all the other sheets.
Here are a few things I tried:
I went to the sheet properties, because I assumed there was something in the ScrollArea property that was causing this. But the ScrollArea property is blank.
There aren't any macros affecting the sheet, and in fact, the workbook is saved as an xlsx, not xlsm, so I don't think a macro is a potential culprit at all.
I went to "view" to see if this was due to a frozen pane, but there are no frozen panes.
I'm sure there's a simple explanation, but I'm stumped. Does anyone have any ideas about how this could be possible?
Thanks in advance for any help!
i have an excel sheet that is grey for some reason. The data seems to be there, but i cant view it. See the picture below. I tried so far going to "normal" view, but that didnt help. Any ideas what caused this and how to get the data visible again?
It looks like your entire worksheet is hidden. Check your menu in order to unhide everything again.
I think it is more of some bugs of excel rather than anything, and I have no idea what I did that made it behaves like this. It was normal until recently.
The problem is that now whenever I change the content of a cell, black borders appear around it or around the row of it. These black borders are not like permanent changes that are made to the cells. They appear right after I change the cell, and when I do anything that refreshes the Excel window (such as scroll to the right and then scroll back left, or switch to another application and then switch back) they disappear, which seems to me like some kind of memory problem. However, even when I cancel all excel applications or even restart my computer, it still happens the next time I turn on excel.
It would be great if somebody can help. Thanks.
Someone posted me an answer as an edit to my question. Though I cannot try it right now, I want to post it here in case it may be the fix to my problem and others having the same problem can have a look at it.
Solution:
https://support.office.com/en-us/article/Fixes-or-workarounds-for-recent-issues-in-Excel-for-Windows-49d932ce-0240-49cf-94df-1587d9d97093
Dark borders around rows and cells appear when entering text in Excel 2016 after Sept 12, 2017 update (KB4011050) [FIXED]
I am seeing buttons disappear throughout Office programs - does anyone know why this may be happening? The first screenshot below is the VBE window when it first opens - if I drag a toolbar to a new location, all of its icons appear, but as soon as the mouse hovers over a button, the image disappears (though the button can still be clicked).
Other times when I open the VBE window, though, all of the buttons display correctly and do not disappear when the mouse cursor moves over them (not sure why this happens sometimes).
The other place I have noticed buttons disappearing is in the popup dialogs that appear when you copy/paste, for example. The buttons and drop-down choices exhibit the same behavior - some images are gone from the start (i.e. the initial pop-up button) and some disappear when the mouse moves over them (the dropdown choice buttons).
I also have this problem quite frequently. My research turned up things like "print = true in the properties" (which I usually don't want), "take focus on click", etc. etc. The only thing I've found that works 100% for me (whether right, wrong or indifferent) is to do the following with each button.
Private Sub CommandButton10_Click()
'__SEARCH FOR SOMETHING BY NAME__
With Me.CommandButton10
.Left = 860.5
.Top = 47.25
.Width = 50.25
.Height = 25.5
End With
'The rest of your code goes here..
End Sub
I know it's a pain to do it this way, and every time you click a button it
resets itself to the position, but I haven't lost a button since I started doing this. Now I do every button I use like this. I too would accept a "proper" fix if someone could come up with one. Hope this helps a little.
I am using an excel 2003 file but running it in excel 2007. I have an issue where suddenly ALL the macro buttons (about 25) disappeared on one of the tabs in my spreadsheet. Macros in the other tabs are not affected. The macros disappear only from the one tab. After several years of having to restore from a master file and update the data, I tried moving the macros (and changing the size slightly) that were on line 1 of the sheet (there are also macros further down the sheet and in different rows) so that they no longer touched the bottom of line 1 and have not had an issue now for 2 weeks. (The issue was happening every day the file was used). I think I suddenly stumbled upon a cure, but time will tell.
I am using excel 2003 on Windows 7. On my laptop left side USB drive G:/ needs something in the root section or all of my Buttons and checkboxes disappear. This happens to all routines written in the last 10 years.
Excel is installed on the C: drive and all files are run and saved there.
My removable drive letters got switch around and so my buttons disappeared when touched and then all of them. I manually set the drive letter of the USB drive back to G:\ and everything appeared as normal with just a few days of panic. A new USB stick in G: will also cause the problem, so whatever is in the root of the old stick I copy over to the new stick. Have not figured out what excel is looking for on the G: drive that causes the images to not show up. I have been to this forum hoping to find an answer over the years so hope this works for someone else.
I have an Listbox Multiselect ActiveX control in a Sheet with Freeze Panes. The problem is that when I try to select items the mouseover icon is the standard excel cross instead of the arrow. I know that this question was asked before, but I didn't find any answer.
Thank u in advanced for help
I tested, and I came up with a few interesting observations.
In the ribbon, go to the developer tab. Make sure that the Design
Mode is not on.
When I first froze panes on the sheet, the freeze line went through the listbox I created. This caused the behavior you are describing with the cross-hairs and being unable to select.
Then I moved the listbox. Still same problem. I tried clicking on various cells around the sheet and in the ribbon area, with no change in behavior.
When I clicked to another sheet and back again, it started working as expected. Normal pointer mouse. I could select multiple, and unselect as needed.
Based on what I've tried, it seems that making sure Design Mode is off, and clicking to another sheet and back again may fix the problem.