Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 49
Default No cell-selection in worksheet

After running a macro I want no selected cell(s) in my sheet. Does someone
know how to do that?

Gert-Jan


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 718
Default No cell-selection in worksheet

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default No cell-selection in worksheet

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
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
Automatically filling a cell from a worksheet based on a selection Pbrent Excel Worksheet Functions 2 May 14th 10 03:39 PM
Macros to protect worksheet and prevent locked cell selection Excel Enthusiastic[_2_] Excel Discussion (Misc queries) 1 April 23rd 07 09:44 AM
Arrows move worksheet rather than cell selection, how fix? grenada49 Excel Worksheet Functions 3 May 17th 05 09:05 PM
assign cell selection order in protected Excel worksheet tom92 Excel Discussion (Misc queries) 1 April 4th 05 05:57 PM
Update cell selection of embedded worksheet in Word punch Excel Programming 0 August 17th 04 04:17 PM


All times are GMT +1. The time now is 10:02 PM.

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

About Us

"It's about Microsoft Excel"