Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
Word
application.errors
conversions
docmanagement
drawing.graphics
formatting.longdocs
international
internet.assistant
mail
mailmerge.fields
menustoolbars
newusers
numbering
oleinterop
pagelayout
printingfonts
setup.networking
spelling.grammar
tables
vba.addins
vba.beginners
vba.customization
vba.general
vba.userforms
web.authoring
word6-7macros
word97vba
  
 
date: Fri, 18 Jul 2008 18:43:00 -0700,    group: microsoft.public.word.tables        back       


Lock cell for text entry - allow field update only? Also, floating comment?   
In Word 2007, I would like to lock a table cell against users entering
text.  I have a field code there which references text from elsewhere
in the document.  I want to prevent the users from "helping" me by
entering text and overwriting the field code.  But however it's
locked, I need to allow the field to update.

Also, can I set up a "floating comment" in that table cell, kind of
like an Excel comment, to let the user know not to try to enter text?

Thanks.
Ed
date: Fri, 18 Jul 2008 10:08:31 -0700 (PDT)   author:   Ed from AZ

Calculate cells for a timesheet   
I'm trying to use Word to acct. for employee's daily/weekly worktime via a 
timesheet that they can fill out.  They will put their In-time (8:00am), then 
Out-time (12:00pm) (lunch), then back In-time (from lunch) & finally 
Out-time.  It needs a Daily total & the Weeks total - my attempts have 
thusfar been disasterous.  I've scoured the internet for a form that gets me 
close, but no luck.  Thanks in advance for those attempting to help me here, 
Michael
date: Fri, 18 Jul 2008 18:43:00 -0700   author:   Michaelcip

Re: Calculate cells for a timesheet   
Hi Michael,

Word really isn't designed for this - it may be a powerful word processor, but an Excel-like spreadsheet it isn't. I'd recommend 
using Excel - it'll be far easier to set up and maintain.

-- 
Cheers
macropod
[MVP - Microsoft Word]


"Michaelcip"  wrote in message news:0B3BDA67-52CB-447C-A2AE-8D7C1EA0AD32@microsoft.com...
> I'm trying to use Word to acct. for employee's daily/weekly worktime via a
> timesheet that they can fill out.  They will put their In-time (8:00am), then
> Out-time (12:00pm) (lunch), then back In-time (from lunch) & finally
> Out-time.  It needs a Daily total & the Weeks total - my attempts have
> thusfar been disasterous.  I've scoured the internet for a form that gets me
> close, but no luck.  Thanks in advance for those attempting to help me here,
> Michael
date: Sat, 19 Jul 2008 18:33:41 +1000   author:   macropod lid

Re: Calculate cells for a timesheet   
If the data is being entered into formfields as are used in a protected 
document, the following code will calculate the elapsed time between the 
information entered into two formfields

' a Macro to calculate the elapsed time for formfields with Date format of 
HH:mm
' Macro created 16 May 1999 by Doug Robbins - Word MVP
'
Start = ActiveDocument.FormFields("Text1").Result
StartHour = Val(Left(Start, 2))
StartMinutes = Val(Right(Start, 2))
StartTimeMinutes = StartHour * 60 + StartMinutes
Finish = ActiveDocument.FormFields("Text2").Result
FinishHour = Val(Left(Finish, 2))
FinishMinutes = Val(Right(Finish, 2))
FinishTimeMinutes = FinishHour * 60 + FinishMinutes
ElapsedMinutes = FinishTimeMinutes - StartTimeMinutes
ElapsedHours = Int(ElapsedMinutes / 60)
ElapsedMinutes = ElapsedMinutes - ElapsedHours * 60
ActiveDocument.FormFields("Text3").Result = Str(ElapsedHours) & ":" & 
Format(ElapsedMinutes, "00")

With a bit of ingenuity, you could modify it so that it could be used from 
the second of each pair of formfields (the out field) to do what you want, 
but, as macropod indicates, it would probably be simpler to use an Excel 
spreadsheet.

-- 
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Michaelcip"  wrote in message 
news:0B3BDA67-52CB-447C-A2AE-8D7C1EA0AD32@microsoft.com...
> I'm trying to use Word to acct. for employee's daily/weekly worktime via a
> timesheet that they can fill out.  They will put their In-time (8:00am), 
> then
> Out-time (12:00pm) (lunch), then back In-time (from lunch) & finally
> Out-time.  It needs a Daily total & the Weeks total - my attempts have
> thusfar been disasterous.  I've scoured the internet for a form that gets 
> me
> close, but no luck.  Thanks in advance for those attempting to help me 
> here,
> Michael
date: Sat, 19 Jul 2008 18:59:01 +1000   author:   Doug Robbins - Word MVP

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us