Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
After running a macro I want no selected cell(s) in my sheet. Does someone
know how to do that? Gert-Jan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
All worksheets have an ActiveCell
HTH -- AP "Gert-Jan" a écrit dans le message de news: ... After running a macro I want no selected cell(s) in my sheet. Does someone know how to do that? Gert-Jan |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not possible. At least one cell must be selected.
You could remove the focus and move it to a hidden shape, which might achieve your objective With ActiveSheet.Shapes("Rectangle 1") .Visible = True .Select .Visible = False End With But why would you need to do it. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gert-Jan" wrote in message ... After running a macro I want no selected cell(s) in my sheet. Does someone know how to do that? Gert-Jan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automatically filling a cell from a worksheet based on a selection | Excel Worksheet Functions | |||
Macros to protect worksheet and prevent locked cell selection | Excel Discussion (Misc queries) | |||
Arrows move worksheet rather than cell selection, how fix? | Excel Worksheet Functions | |||
assign cell selection order in protected Excel worksheet | Excel Discussion (Misc queries) | |||
Update cell selection of embedded worksheet in Word | Excel Programming |