Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can add the condition to the existing event itself.
-- If this post helps click Yes --------------- Jacob Skaria "G" wrote: Thanks for your help, Jacob. Actually, the zoom doesn't change unless I MANUALLY move to another cell. Possible to set it up so that afterupdate, it moves to another cell (zoom resets)? Also, I have one other cell that I want to do this for (dropdown zoom) ... can I just add code to include this cell or do I need another procedure? Thx. "Jacob Skaria" wrote: The below code does that too.. Only in D2 the zoom is set to 200. -- If this post helps click Yes --------------- Jacob Skaria "G" wrote: My b ... figured that out before I read this and it's working, now. Thanks. One (last) question ... is there an afterupdate method? After this is updated, I want to move to another cell to restore the original size. Thanks. "Jacob Skaria" wrote: You should have pasted the code within the procedure/ Please try.... Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Application.Intersect(Target, Range("$D$2")) Is Nothing Then ActiveWindow.Zoom = 200 Else ActiveWindow.Zoom = 100 End If End Sub -- If this post helps click Yes --------------- Jacob Skaria "G" wrote: This doesn't appear to work ... I'm getting INVALID OUTSIDE PROCEDURE (Target highlighted). "Jacob Skaria" wrote: Try this..... If Not Application.Intersect(Target, Range("$D$2")) Is Nothing Then ActiveWindow.Zoom = 200 Else ActiveWindow.Zoom = 100 End If If this post helps click Yes --------------- Jacob Skaria "G" wrote: I understand that there's no way to control the font SIZE for dropdown text using validation (Excel 2002). I'm trying to simulate an onfocus event to change the display percentage to 200% when cell D2 is selected, but it isn't working. Here's the code, can anyone tell me what I'm doing wrong? Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Address = "$D$2" Then ActiveWindow.Zoom = 200 Else ActiveWindow.Zoom = 100 End If End Sub Thanks, in advance, for your help. G |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I change font size in a dropdown menu I created? | New Users to Excel | |||
how can I change the font size on a validation list | Excel Programming | |||
How to change the font size of Validation List? | Excel Programming | |||
How do I change the size of font/display in a dropdown list I've . | Excel Programming | |||
Change font size in drop down validation lists | Excel Discussion (Misc queries) |