PC Review


Reply
Thread Tools Rate Thread

edit directly in cell

 
 
tracktraining
Guest
Posts: n/a
 
      20th Feb 2009
Hi All,

My coworker just tested my file and it didn't work. I soon realized that the
"edit directly in cell" option was check. So, after unchecking the option,
and the coworker double click on the cell, the userform appears and set the
userform to be active.

is there a way to have the "edit directly in cell" uncheck for certain excel
files and check for others without manually having to go to tools/options
everytime?

thanks,
tracktraining
--
Learning
 
Reply With Quote
 
 
 
 
Bob Umlas
Guest
Posts: n/a
 
      20th Feb 2009
For those files, Assign this macro to the workbook_open event:
Alt/F11, Ctrl/R, doubkle-click "ThisWorkbook", put in this code:

Private Sub Workbook_Open()
Application.EditDirectlyInCell = False
End Sub


"tracktraining" <(E-Mail Removed)> wrote in message
news:3929B58A-74CD-4B6E-8E26-(E-Mail Removed)...
> Hi All,
>
> My coworker just tested my file and it didn't work. I soon realized that
> the
> "edit directly in cell" option was check. So, after unchecking the option,
> and the coworker double click on the cell, the userform appears and set
> the
> userform to be active.
>
> is there a way to have the "edit directly in cell" uncheck for certain
> excel
> files and check for others without manually having to go to tools/options
> everytime?
>
> thanks,
> tracktraining
> --
> Learning



 
Reply With Quote
 
meh2030@gmail.com
Guest
Posts: n/a
 
      20th Feb 2009
On Feb 20, 12:09*pm, tracktraining
<tracktrain...@discussions.microsoft.com> wrote:
> Hi All,
>
> My coworker just tested my file and it didn't work. I soon realized that the
> "edit directly in cell" option was check. So, after unchecking the option,
> and the coworker double click on the cell, the userform appears and set the
> userform to be active.
>
> is there a way to have the "edit directly in cell" uncheck for certain excel
> files and check for others without manually having to go to tools/options
> everytime?
>
> thanks,
> tracktraining *
> --
> Learning


TrackTraining,

This option is the following code in VBA:

Application.EditDirectlyInCell = True (or False)

Look into writing this into a Workbook event (Activate/Deactivate).

Matt
 
Reply With Quote
 
Mike H
Guest
Posts: n/a
 
      20th Feb 2009
Hi,

Set it in the workbook open event

Private Sub Workbook_Open()
Application.EditDirectlyInCell = True

or

Application.EditDirectlyInCell = False
End Sub


Mike
"tracktraining" wrote:

> Hi All,
>
> My coworker just tested my file and it didn't work. I soon realized that the
> "edit directly in cell" option was check. So, after unchecking the option,
> and the coworker double click on the cell, the userform appears and set the
> userform to be active.
>
> is there a way to have the "edit directly in cell" uncheck for certain excel
> files and check for others without manually having to go to tools/options
> everytime?
>
> thanks,
> tracktraining
> --
> Learning

 
Reply With Quote
 
tracktraining
Guest
Posts: n/a
 
      20th Feb 2009
thanks mike, bob, and matt!
--
Learning


"(E-Mail Removed)" wrote:

> On Feb 20, 12:09 pm, tracktraining
> <tracktrain...@discussions.microsoft.com> wrote:
> > Hi All,
> >
> > My coworker just tested my file and it didn't work. I soon realized that the
> > "edit directly in cell" option was check. So, after unchecking the option,
> > and the coworker double click on the cell, the userform appears and set the
> > userform to be active.
> >
> > is there a way to have the "edit directly in cell" uncheck for certain excel
> > files and check for others without manually having to go to tools/options
> > everytime?
> >
> > thanks,
> > tracktraining
> > --
> > Learning

>
> TrackTraining,
>
> This option is the following code in VBA:
>
> Application.EditDirectlyInCell = True (or False)
>
> Look into writing this into a Workbook event (Activate/Deactivate).
>
> Matt
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I edit directly in a cell - previously F2 Pweter Microsoft Excel Misc 2 18th Feb 2010 11:14 AM
Cannot Edit Directly in a Cell Kevin Microsoft Excel Crashes 0 30th Jul 2009 04:16 PM
edit directly in cell - scroll with mouse Excel_user_M Microsoft Excel Worksheet Functions 0 9th Jan 2008 10:30 PM
edit directly in cell in Excel 2007 =?Utf-8?B?QW5kcmVh?= Microsoft Excel New Users 5 8th Jul 2006 03:50 PM
Edit directly in cell Chip Greening Microsoft Excel Misc 0 25th Mar 2004 11:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:32 PM.