Pages

Search

Enhance formula Microsoft Project

Enhance formula Microsoft Project


Enhance formula

Posted: 28 Jan 2005 06:09 AM PST

In article <com>,
"Steve Scott" <microsoft.com> wrote:
 

Steve,
Formulas can be made as complex as you can stand but keep in mind the
limitations of using a formula in a custom field. The formula can only
work on data relating to an individual task, the more complex the
formula the more likely it will contain a logic error, and formulas only
work on tasks in the Project file where they reside. Formulas are also
quite limited in what they can do (i.e. available functions).

Whey trying to exercise multiple decisions that may involve data
elements from many tasks, (or resource or assignments), VBA is the way
to go. The same complex formula used in a custom field can be easily
broken into smaller elements making it easier to understand and
troubleshoot. A macro stored in your Project Global can be used to
operate on any Project file. If you do not have any experience with VBA,
we will be happy to help you either directly or through suggestions for
learning VBA yourself.

I know I didn't directly answer you question. When I see someone trying
to develop a complex formula my inclination is to suggest a better
alternative.

John
Project MVP

Using a macro to create a shortcut button to apply a resource flit

Posted: 28 Jan 2005 02:09 AM PST

Hello, Blue!

You can't always record your filtering - it's better to record yourself
creating and applying a filter, then you can use the code you get to create
filters for other resources, too.

Remember to use the test "contains" and not "equals", to pick up where a
task is allocated to more than one resource.

Hope this helps

Pete



Sub FilterDaveChow()
FilterEdit Name:="Dave Chow", TaskFilter:=True, _
Create:=True, OverwriteExisting:=True, FieldName:="Resource Names",
Test:="contains", _
Value:="Dave Chow", ShowInMenu:=False, ShowSummaryTasks:=True
FilterApply Name:="Dave Chow"
End Sub


"Blue Giraffe" wrote:
 

duration from more than one task

Posted: 27 Jan 2005 04:49 PM PST

In article <#phx.gbl>,
"Steve House [MVP]" <send.hotmail.com> wrote:
 

Steve,
Actually you probably can create the equivalent of a hammock task with
the link lines showing, but it would take some VBA code to do so
(although I've never tried it). But, I agree with your your second
paragraph. A lot of things can be done with project, it doesn't mean
they all make good sense.

John

A Way to list the WBS number with each task in resource usage view

Posted: 27 Jan 2005 02:11 PM PST

Hi Lisa,

This macro should copy the WBS values into the assignments' Text1 field that
can be shown in any Usage view:

Sub CopyWBS
Dim Job as task
Dim Whodunit as assignment
for each job in activeproject.tasks
if not job is nothing then
for each whodunit in job.assignments
whodunit.text1=job.wbs
next whodunit
end if
next job
end sub

HTH


--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/index.htm
32-495-300 620
"DTScheduler" <microsoft.com> schreef in bericht
news:com... 
Excel. 
columns 
Gantt 
so 


Base calendar in a Master Project

Posted: 27 Jan 2005 01:33 PM PST

Hi jlb,

PMFJI, but I am puzzled when you say that the master project calendar seems
to take over the scheduling for the subprojects. When I work with inserted
subprojects with different base calendars they maintain the base calendar
definition from each subproject. True the nonworking time *display* in the
Gantt chart defaults to the Master Project nonworking time but each task
schedule (including changes in start time, finish time and nonworking time)
is following its base calendar.

As John notes, any tasks added to the master will default to the base
calendar for the master.

Hope this helps. Let us know how you get along.
Julie

"jlbreyer" wrote:
 

%100 in Project 2003 and 0% complete in PWA

Posted: 27 Jan 2005 12:17 PM PST

Scott --

Whenever the PM receives, approves, and processes task updates into the
Microsoft Project plan, he/she should also click Collaborate - Publish - All
Information to "push" the latest schedule changes to every area of PWA. Is
this your current process?

--
Dale A. Howard [MVP]
Enterprise Project Trainer/Consultant
http://www.msprojectexperts.com
"We wrote the book on Project Server"


"Scott" <microsoft.com> wrote in message
news:com... 


Custom Fields to Subprojects

Posted: 27 Jan 2005 07:31 AM PST

In article <googlegroups.com>,
"Terry" <com> wrote:
 

Terry,
I "preach" the use of VBA a lot on this newsgroup because I hate to see
users struggle with something that can be accomplish very simply with a
little VBA code. You'd be amazed at what can be done with VBA.

John

How to setup so Gantt view starts at project start date?

Posted: 27 Jan 2005 06:29 AM PST

Hi MoJo,

Glad to have helped and thanks for the feedback. Let us know if we can
assist you again.

Julie

"MoJo" wrote:
 

Updating Table & Filter definitions in Plan and Global

Posted: 27 Jan 2005 03:59 AM PST

Ah, now I see. Nope, no affiliation other than I use their products. I
don't frequently see MS employees in this ng. When they do appear in others
their comments are usually followed by legal disclaimers about "implied
warranties" etc.
No offense taken ;-)
Julie

"Peter Rooney" wrote:
 

assigning a group of people to a task

Posted: 27 Jan 2005 03:47 AM PST

Hi Fred,

Welcome to this Microsoft Project newsgroup :-)

Why not call the group, say,"Workers", make their Max. Units 600% and then
just assign a Worker to each task.

FAQs, companion products and other useful Project information can be seen at
this web address: <http://www.mvps.org/project/>

Hope this helps - please let us know how you get on :-))

Mike Glen
MS Project MVP



Fred wrote: 



How can I produce a Project 2000 report in Word?

Posted: 27 Jan 2005 03:27 AM PST

Hi

the only option when it comes to "saving the acutal reports" is to print
them to a pdf file - you can use adobe acrobat (not the reader) or a free /
cheap one like www.pdf995.com (which is what i use)

Cheers
JulieD

"PoshDog" <microsoft.com> wrote in message
news:com... 


How to track time without considering assignment units?

Posted: 27 Jan 2005 02:52 AM PST

Hi,

I'm ok with your definition: the status date is the date when a status
is done on a project: actual work and remaining work are only valid for
this status date. We do a project status during the week as soon as
actuals and estimates to complete are available from our time tracking
tool. The status date is the last friday.

What I was missing was a way to manage tasks AHEAD of the status date:
- do I have to spread extra work on past work, and how?
- how do I see the project gain of time and the final milestone
advance?

I solved these questions by properly configuring the calculation
options of ms project (please see my other post)
Anyway, thanks for your help !

Restricting resource name entry

Posted: 27 Jan 2005 01:42 AM PST

Jan,
apologies... something funny going on with Google.

thanks for the assistance. This is exactly what I was looking for.
great !,

Michael

customizing updates tab in PWA

Posted: 27 Jan 2005 01:03 AM PST

yair o --

The only way to get extra columns to show up in the Updates page in PWA is
to add them as extra published fields in each project. To do so, open each
project and do the following:

1. Click Tools - Customize - Published Fields
2. Select the extra fields you want from the list on the left and copy them
to the list on the right
3. Click the OK button
4. Click Collaborate - Publish - Republish Assignments
5. Click OK

You should also ask your Project Server administrator to add these
additional fields to the Timesheet view if you are using Project Server
2003. Hope this helps.

--
Dale A. Howard [MVP]
Enterprise Project Trainer/Consultant
http://www.msprojectexperts.com
"We wrote the book on Project Server"


"yair o" <microsoft.com> wrote in message
news:com... 


Can MSP auto adjust the % of a resource?

Posted: 26 Jan 2005 08:43 PM PST

OK, thanks again for the info!!!!

"Steve House [MVP]" wrote:
 

How to add a gridline in gannt chart to show Deadline?

Posted: 26 Jan 2005 08:27 PM PST

Use the drawing tools to put a vertical line in the plan and in the line
properties lock it to the date. A better way than a vertical line would be
to insure you have a final "Project Complete" milestone and all dependency
link paths terminate on it - while not every task in a project will have a
predecessor necessarily, every one will have a successor - if nothing else,
the Project Finished milestone. Then set a deadline (Task Information,
Advanced tab) on the finish milestone. Now MSP will "red flag" if you're
going past the deadline. You could carry it farther and put a deadline on
all the tasks in the plan if you like but I don't think that would be
particularly valuable.

--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs

"microbus73" <microsoft.com> wrote in message
news:com... 

color-code a task bar to a resource

Posted: 26 Jan 2005 04:31 PM PST

Hi Thomas,

Welcome to this Microsoft Project newsgroup :-)

You might like to see FAQ Item: 37 - Custom Fields in Tables. FAQs,
companion products and other useful Project information can be seen at this
web address: http://www.mvps.org/project/

Hope this helps - please let us know how you get on :-)

Mike Glen
Project MVP


net wrote: 



How do I show all of my notes?

Posted: 26 Jan 2005 03:37 PM PST

You're welcome Sarah. Glad to have helped and thanks for the feedback. Let
us know if we can assist again.

Julie

"Sarah" wrote:
 

SP1: Can't set Project Start date to anything but 2005

Posted: 26 Jan 2005 01:21 PM PST

You are welcome.
Thanks for posting back your results.

--
-Jack ... For project information and macro examples visit
http://masamiki.com/project

..
"AllBackJack" <microsoft.com> wrote in message
news:com... 
date 
same 
to 
and 
system's 
it. 


Gantt Chart Bars Do Not Print

Posted: 26 Jan 2005 12:27 PM PST

You're welcome, Elle :-)

Mike Glen
MS Project MVP





Elle wrote: 



Scheduling Multiple Resources for a Task

Posted: 26 Jan 2005 12:03 PM PST

Dale,

Thanks for the help...I have a follow-up question. For the task below; what
would be the best way to track progress? In my case, Resource 3 completed
20% of her work, resource 1 & 2 have not completed any. I went into the view
you showed me and reduced the remaining hours for Resource 3 by 20% but for
the overall task, the % complete still shows zero. Is there a way to have
Project automatically calculate the overall % complete based on the remaining
work for a resource or do I need to manually calculate the overall % complete
based on a 20% completion for Resource 3?

"Dale Howard [MVP]" wrote:
 

Convert SureTrak to Project

Posted: 26 Jan 2005 09:07 AM PST

Thanks Jack. I tried using the mpx, but didn't get any consistent results.
I have tried exporting into Excel and then moving into Project and am able to
get some results. Thanks for the encouragement.
askgail

"JackD" wrote:
 

Leveling Question

Posted: 26 Jan 2005 08:09 AM PST

In addition to the other comments. since you want some tasks to split and
others not to, do the leveling in several passes, selecting the tasks to be
leveled in the current pass and using "Level Selevcted Tasks" instead of
leveling the entire project.

--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs

"Michael" <com> wrote in message
news:com... 

how do i let users change dates on the web?

Posted: 26 Jan 2005 07:51 AM PST

Bill at HP --

You must add the Actual Start and Actual Finish fields to the list of
published fields in each project using Tools - Customize - Published Fields.
Be sure and select the "Let resource change field" option for both fields
and then click OK. You must then publish each project using Collaborate -
Publish - Republish Assignments. After doing this, your Project Server
administrator should add these two fields to the Timesheet view in PWA.
Lastly, you should teach your team members how to use these fields properly
while entering progress in their timesheet. Hope this helps.

--
Dale A. Howard [MVP]
Enterprise Project Trainer/Consultant
http://www.msprojectexperts.com
"We wrote the book on Project Server"


"Bill at HP" <Bill at microsoft.com> wrote in message
news:com... 


Converting Project 97 file to 2000

Posted: 26 Jan 2005 06:29 AM PST

In article <OOnVaF#phx.gbl>,
"Mike Glen" <glenATmvps.org> wrote:
 

Andrew,
First I'd like to hear your response to Mike's question. If you have
additional files for conversion, feel free to e-mail them. My address is
in the header.

John

Microsoft CRM - Removing all Sharing of Contacts/Leads

Microsoft CRM - Removing all Sharing of Contacts/Leads


Removing all Sharing of Contacts/Leads

Posted: 13 Aug 2004 09:08 AM PDT

There was a problem with a custom built app that
accidently gave ownership of an account to a different
person, so sharing was propogated to all contacts
associated to the account.

It's been corrected, but it's unknown how many accounts
this affected.

What table is the sharing information stored in? What's
the best method I can use to detect and fix this problem?

Thanks!

David

 
you ned to do some 
shares have appeared. Are 
they are seeing each 
each others data? 
aqLanding.aspx 
message 
in 

2 questions on deployment manager

Posted: 13 Aug 2004 08:33 AM PDT

I think the issue is the current DB's used the MSDN license details and the
user wants to build new databases for his companies new license etc.

--
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx


"NIck" <microsoft.com> wrote in message
news:5baa01c4815c$663796f0$gbl... 


Error when using Redeployment Tool

Posted: 13 Aug 2004 01:42 AM PDT

Thanks Peter.

I found out the problem. The network administrator did
not put the AD to Native Mode, hence the error.

By the way, I am redeploying MS CRM to another domain.
The redeployment tool is able to handle this (according to
their documentation). :p
 
whether the 
another server 
the tool is not 
in message 
am 
user 
from 
tried 

CRM Architecture

Posted: 12 Aug 2004 10:34 PM PDT

also dig around msdn.microsoft.com for information on Microsoft CRM. Here is
a link for you

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/crmsdk1_2/htm/v1d2overview.asp

--
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx


"Raju" <com> wrote in message
news:e0$phx.gbl... 


crmForm.SetFieldReqLevel

Posted: 12 Aug 2004 04:08 PM PDT

Look at the file FORM.crm.htc


Stephen

"sherry" <microsoft.com> wrote in message
news:55a001c480c1$55f639e0$gbl... 


Backoffice integration with standard edition

Posted: 12 Aug 2004 01:50 PM PDT

James,

Building the integration isn't that difficult if you've done integration work
before. However, if all you need is relatively simple point to point
integration between the 2 apps, I'm guessing that upgrading to the Pro licenses
or looking at either Scribe or Nolan will be cheaper than the time it would take
you to build it (depends on how your dev time is valued).

In the typical integration scenario between GP & an ERP app, CRM doesn't
generate Invoices, it only receives copies of the Invoices created in the ERP
system. The integration synchs customer data and will send orders from CRM to
the ERP and then update CRM Orders as they move through fullfillment and then
into Invoicing. You would also send products from the ERP to CRM.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Fri, 13 Aug 2004 06:05:02 -0700, "James" <microsoft.com>
wrote:

Hi,

Thanks for the answer. It was really helpful. Now my question is how do
invoices from MS-CRM affect an ERP system. How complicated is it to do this
backofffice integration with Standard edition?


"Matt Parks" wrote:
 

CRM 1.2 Security Service Startup with SQL Server Named Instance

Posted: 12 Aug 2004 11:14 AM PDT

Peter said it wasn't supported, not that it won't run. There is a difference.

CRM may run, but you will run into problems with the replication and the SFO
client as the replication does not get setup properly in a named instance.

As for the dependency, you can always add it yourself manually.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Thu, 12 Aug 2004 14:30:53 -0500, "Aaron J. Millis" <io.com>
wrote:

Peter Lynch <com> wrote: 

Er, CRM runs on named instances just fine . . . Manually starting the security
service (or starting it with a machine
startup task) works around the issue.

The issue isn't getting it to run, its just getting it to properly acknowledge
it's dependency during automatic startup.

Browser crashing

Posted: 12 Aug 2004 09:48 AM PDT

I had the same problem. It turned out to be pop-up blockers

"Frank" <microsoft.com> wrote in message
news:4d3901c4808c$3056d3f0$gbl... 


crm logon error!!

Posted: 12 Aug 2004 07:19 AM PDT

ok thanks, i'll do that



"Matt Parks" <com> wrote in message
news:com... 
your 
to the 
<ie> 
following 
server.</details><file>d:\crm\build\3297\src\platform\secur ity\crmsecurity\s 
server.</details><file>d:\crm\build\3297\src\platform\secur ity\crmsecurity\s 
found 
on 
<file>d:\crm\build\3297\src\platform\security\crms ecurity\secmain.cpp</file> 


EMail replies from CRM generated messages

Posted: 12 Aug 2004 05:14 AM PDT

PDF Page 76. It talks about using a sub-domain to reduce server workload.


"MattNC" <microsoft.com> wrote in message
news:com... 
an 
It is 
DNS 


CRM Data (Dirty Records!) to Great Plains

Posted: 11 Aug 2004 06:59 AM PDT

Matt,

Thanks for the response. I did found an interesting article re. the subject
and will start to play with simple callouts events on a few CRM objects.

[http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmbscrm1_2/html/mbs_crmpostcalloutsv1d2.asp?frame=true]

I also downloaded the "MS CRM Integration for Great Plains" SDK. I am sure I
will be successful with the integration

A

"Matt Parks" wrote:
 

Outlook Calendar Appointments

Posted: 11 Aug 2004 05:30 AM PDT

Lee,

I haven't heard anything about changes in the Exchange integration with CRM2005.
I know they are looking at a lot of things, so who knows, we may see some
changes in this area.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On 12 Aug 2004 23:00:33 -0700, com (Lee) wrote:

Thanks Matt,

To me this means the much hyped integration with outlook calendar is
completely useless. If a sales person is out on the road or on holiday
they cannot go online/offline or accept their appointments. During
this time nothing is going into their outlook calendar. Users sharing
their calendar will think they have nothing scheduled when in fact
they could have been invited to other appointments by other users.

Do you know if they is any talk of this changing in v2?

Best regards
Lee

Matt Parks <com> wrote in message
news:<com>... 

Microsoft Word - Page Break Going to Other than at it's intended Place?

Microsoft Word - Page Break Going to Other than at it's intended Place?


Page Break Going to Other than at it's intended Place?

Posted: 05 Dec 2013 02:20 PM PST

Hi


I have two Questions as follows:


Only at some places, not in the whole document,  when I do a "Page Break" - it goes to a place other than at it's intended place--


Questions   (a) Why does this happens?

and             (b) How do I fix it.? 


Look forward to hearing from an expert.


Regards,

-Saeed



Word 2007/2010

Posted: 05 Dec 2013 02:02 PM PST

I have a form that has a button that will send the file via email.  When I protect the file to just filling in forms the button no longer works.  How do I get around this.

Microsoft Word Problem

Posted: 05 Dec 2013 01:30 PM PST

My 97 year old friend is trying to type up her Christmas letter, but all of the letters are in red & underlined with tiny dots, so it looks like the lines are underlined.  Does anyone know what she may have hit that is causing this issue?  Thank you.  :)

Exponents create unwanted space between lines in Microsoft Word 2010 :: How do I fix?

Posted: 05 Dec 2013 12:46 PM PST



As you can see, the exponent does not need the additional space Word forces between the lines. 

Word 2013- Blank Document not pulling from normal.dotm file?

Posted: 05 Dec 2013 12:35 PM PST

Hello,

My Word 2013 blank document is opening with no header ever since I upgraded to Windows 8.1 the other day. I did online research on the normal.dotm file in the templates folder and have deleted it and let Word recreate it and still there is no header. It seems that the blank document is pulling from another file, but I cannot find a way to see what file it is using. I even did the step where I went to run entered regedit and edited the registry editor, but that did not fix the issue.

Please Help!

Thank you.

How do I make Word 2007 open zoomed to 150%?

Posted: 05 Dec 2013 12:29 PM PST

I've searched on this site for answers, and so far none of what has been offered as a "solution" has solved my problem.

 

What I currently have when I open Word 2007: a blank document zoomed to 80%, page layout 'after' spacing at 0

 

What I want: a blank document zoomed to 150%, page layout 'after' spacing at 10

 

I've read all about changing the 'Normal' template... blah blah blah. But the Normal template is apparently not what my Word opens automatically, because I've made changes to that template, and when I go in and open that template, those changes are saved properly and appear the way I want. But going in and having to open this particular template isn't saving me any time. I might as well just set the zoom and page layout myself every time if I'm going to have to go in an open a particular template anyway.

 

Since opening Word automatically gives me a blank document, I want that blank document set up to what I need, and so far none of the answers I've seen on here address this.

 

Anybody know how to fix this? This seems like a simple problem...

 

Thanks,

Brian

word starter

Posted: 05 Dec 2013 12:22 PM PST

I had word starter but have had to have a new hard drive fitted how do I get word back

Word 2013 endnotes formatting

Posted: 05 Dec 2013 12:01 PM PST

I am trying to convert some WordPerfect files to Word 2013 and it's a mess. The fact that this is a long, slow process should not annoy me (but it does), but the thing I'm having no luck with is the fact that trying to restyle my WP footnotes to Word endnotes is proving impossible.  I have "converted the footnotes to endnotes" but the formatting has changed and remains hidden.  Word has apparently decided that endnotes must be in small Roman numerals, and has grayed-out the option to change that.  Also, the Style "Endnote Reference" is "hidden until used" but remains hidden even when used.  I expect there is some simple, if hidden, way to fix all this, but I can't find it.  Any ideas?

A shared printer, 1 computer, 3 accounts, 2 can print and 1 can't?

Posted: 05 Dec 2013 11:49 AM PST

The computer that we have is a lenovo idea centre and the printer is an HP laserjet pro CM 1415 fn.  I have 3 accounts on the computer, one is admin the other two are general.  The problem is that one of the general accounts won't print any documents from any microsoft application!  Any ideas how to resolve this?

MS Word wont open .html files????

Posted: 05 Dec 2013 11:35 AM PST

I want to use Word as my basic html editor (just as I do at work) but it wont associate with .html files?

MS Word doesn't even appear as a possible program????

Even browsing to Word.exe wont open an .html file

Table is unintentionally splitted and the first row jumps over paragraphs to the previous page.

Posted: 05 Dec 2013 10:31 AM PST

Hello,

I have problem when composing a long table with a lot of rows so that it is longer than one page. The  first row is always separated from the subsequent rows. The first  always jumps over one/two paragraphs in the previous page, so that the order of the writing became awkward : the first row - one/two paragraphs - the subsequent rows.
I have tried several tricks to solve this problem, but so far I failed to.
Please advice me how to solve this problem. Thank you

 

Why aren't the proofing tools working in Office 2013 on Windows 8 laptop?

Posted: 05 Dec 2013 09:27 AM PST

I recently bought a Lenovo Yoga 11S laptop, with Office Home and Student 2013 installed in it. I didn't check the functioning of the proofing tools before, but when I needed them recently, I found that they were not working. When I had to use the thesaurus, Word just stopped working with a message that read "Microsoft Word has stopped working". It happened with spell check and dictionary too. I've checked the proofing preferences and everything is as it should be. I even downloaded the proofing tools again from the website, but it didn't change anything. This is really frustrating, as I need the thesaurus a lot. I've tried many online forums and have not been able to find a solution for this. I would really appreciate your quick response to this. 
Thank you.

Word 2013 dictionary -- must be signed in with microsoft account

Posted: 05 Dec 2013 09:24 AM PST

This is a corporate setting and we don't give Microsoft accounts.  How do I let users use this feature without a Microsoft acct?

Help! Margins randomly change in Word 2010 large document

Posted: 05 Dec 2013 08:48 AM PST

I have a large document (450 pages, 6.5 MB) with several section breaks contained within the document.  Within several sections the text is in an outline format.  For some reason, the left hand margin will shift and the entire outline moves outside the LH margin and the levels are collapsed (all aligned).   I will readjust the margin and indent the entire outline appropriately, SAVE, and continue working further into the document.   This doesn't occur to the same section or outline, but several different within the document.  

 

I've fixed this several times at different points in the document, but it keeps occurring!!  Its incredibly frustrating.Help please.  

Using Building Blocks/Quick Parts in Word 2013

Posted: 05 Dec 2013 08:38 AM PST

Hello, 

I am building a form in Word 2013. I have a question that I pose to the user: Do you have this already? Then I added a drop down selection of Yes or No. 

I have two quick part text paragraphs. One is the content for if yes is selected. The other is the content for if no is selected. 

How do I set up the trigger that if Yes is selected then show content A but if No is selected show content B?

Could someone point me in the right direction on how to figure this out?

Thank you!!!

I should add this edit... I don't know how to use the vba code stuff :) 

Windows 8.1 Office 2013

Posted: 05 Dec 2013 08:36 AM PST

English:
Help! I cant open any of the office 2013 apps! Just updated to Windows 8.1, and the office 2013 seems to be incompatible to the system. How could it be? What should I do to resolve this problem? Thank you.
Portuguese:
Ajuda! Não consigo abrir nenhum aplicativo do office 2013! Acabei de atualizar para o windows 8.1, e parece que o office 2013 é incompatível com o sistema. Como pode ser? O que eu devo fazer? Obrigado.

Merging Labels in Officed 2007

Posted: 05 Dec 2013 08:15 AM PST

I am very competent using mailmerge, but am struggling with Office 2007.  When I add the table to put the fields in on the labels, the cursor is at the BACK of the table and I can't get the fields in.  This happens with letters too.  What is wrong, I have had trouble ever since I got Windows7 and now Windows 8.1.  Always worked on my old computer????

Updating field codes automatically

Posted: 05 Dec 2013 08:12 AM PST

My company has a Word template (originally created in Word 2000) that is used for procedures.  It was originally designed to store a number of values on the cover page, using Set; for example, Set Proc_RevNumber "15" to set the revision number to 15.  Subsequent pages contain the same data in the header, and display the data using Ref; for example; Ref Proc_RevNumber \* charformat.  After recently implementing Word 2010, we are noticing that, on some occasions, the pages after page 1 do not show the current revision until the document is printed; i.e., the pages show revision 14 instead of 15 on the screen (in Print Layout view), but when printed, they are all revision 15.  This could be a concern for users.  Is there any setting in Word 2010 that will automatically update references such as these when the document is opened, so that they display correctly?

Issue with Word Documents in Office 2010

Posted: 05 Dec 2013 07:13 AM PST

Hi,

  We are seeing a rather odd issue with one user with Microsoft Word 2010 and when she opens a Word document. This is on a 2008 R2 Server with Xenapp 6.5 installed. Profiles are on a DFS share path with only one target enabled and permissions have been verified. When she opens a document, it comes up in read only. She can close it and reopen it and it's fine. Yesterday she didn't have the issue, this morning she did. This happens on random Microsoft Word documents and only with Word documents. No reports of any issues with Excel, Powerpoint or within Outlook. I have seen some articles and tried a couple of fixes but nothing has worked. I don't think a uninstall and reinstall Office will fix the issue as one forum I had seen with a similar issue. She said some documents had been converted over from Office 2003. This has also happened with a Word document that had been created within Word 2010. Office has been patched with the latest updates and service packs. Any help is greatly appreciated.

 
  Thanks, 
    Shaun

How can I have the View save with the specific Word document?

Posted: 05 Dec 2013 06:09 AM PST

I have documents on my computer that I want to open in either Print Layout or Web Layout View. In Word 2010 and earlier, if I opened a document it would remember the last view I had used with it - as if the View was saved with the file.

Now in Word 2013, if I open a file, it defaults to the last View I was using. I constantly have to switch views and the extra step is driving me crazy! Any thoughts?

Thanks,
Ryan

Quick Parts-> Document Property: only 1000 properties are shown

Posted: 05 Dec 2013 05:36 AM PST

I have an unusual problem: 
My document has more than 1000 properties (yes, I need all of them) and they are all quite nicely show in Document Panel. But I'm able to add via Quick Parts->Document Properties only first 1000 of them, others are not shown in the list.
How can I add the others? It doesn't have to be easy, it only has to work.

How to create a macro and run it programatically

Posted: 05 Dec 2013 05:06 AM PST

My application is running Progress openedge and want to know How to create a macro and run it programatically,

UK English in Word 2013

Posted: 05 Dec 2013 04:12 AM PST

I was glad to see that my version of of Word now had UK English as its default. Previous versions kept switching out of UK English into American English.

But it appears that Microsoft's idea of UK English is that it is just the same as American English, and I'm being autocorrected from words with ...our and ...ise endings (to ...or and ...ize - and yes I know that ize is an alternative in UK English, even used by The Times, but I'm working to the style book of a company that uses ise). Does anyone know whether there is a real UK English dictionary available: the UK English option on previous versions was reasonably accurate when we were allowed to use it, so maybe there is a way of importing it.  

Microsoft Word 2013 Password Recovery.

Posted: 05 Dec 2013 02:39 AM PST


Hi Everyone.



I recently password protected the opening of a word document that contains my personal information,

Unfortunately I have misplaced the required password to open this file. I am the administrator of the PC that the file is stored and I created the file a week back on the same PC.


It would be much appreciated if someone could provide a solution for my dilemma, I could provide the necessary information to authenticate my ownership of this file if need be.


Looking forward to your support.


Pasting into a numbered list

Posted: 05 Dec 2013 02:01 AM PST

I'll begin with an easy way to recreate my problem:

 

- Create a numbered list with 3 elements.

- Manually change the indent of entire set using the vertical ruler.

- Then paste raw text into one of those three elements.

 

Word will revert the indent of the row you've pasted text into to its default state.

 

Is there any way to prevent Word from doing this?

 

(I know it's enough to properly define the styles, but the nature of my task makes it impractical).

I can't open my word document due to some issues with the contents. Please Help!

Posted: 04 Dec 2013 11:05 PM PST

https://www.dropbox.com/s/f7km92ohnv9x34c/ECE%20546%20Homework3-2.docx

Word 2013 Ribbon won't stay on selected tab.

Posted: 04 Dec 2013 08:59 PM PST

When I open Word 2013, it defaults to the "File" tab. If I select a different tab, such as "Home" I get the options but "File" stays highlighted and when I click back into the document, the "Home options disappear and I am back at "File". This makes editing very cumbersome. How do I get the tab I select to be "sticky" and stay active until I select a different tab?

Word 2007 - Checking Character

Posted: 04 Dec 2013 08:33 PM PST

Good day,

 

Using If function in mail merge: I want to check the contant in a cell contains English characters or not.

How can I write: IF(A2 not contains "A" to "Z", print Chinese character, print English character)

 

Regards

Hong Kong

 

labels avery 5160 address, mixed addresses

Posted: 04 Dec 2013 05:34 PM PST

set up fine, entered 30 names, no problem, but it will not let me enter any more - will not go to a page two no matter what I do, hit enter, keep typing, etc. how do I enter more than 30 addresses without creating separate files?

Problem sending the command to the program

Posted: 04 Dec 2013 03:43 PM PST

When opening word, excel, power point or any other micro soft product receives this message.  "There was a problem sending the command to the program.  I have had one opinion that said that I have to delete every thing onmy computer and start completely over.  I do not want to do that.  Please help me.

An endless page in Word?

Posted: 04 Dec 2013 03:33 PM PST

Hello! I want to create something like a catalogue. Therefore I want to export my Word document in the PDF-format.

Is there a way to make Word 2013 consider all the text/images as just one page instead of several one?

I just want to use the exported PDF-file as a database-like catalogue.

docx attachments

Posted: 04 Dec 2013 03:22 PM PST

i'am using windows live mail and for some reason i can not open any e-mail attachment  in word document or docx format .

windows 8.1
word 2013
windows live mail

any ideas ??
Thank you

disclaimer on outgoing smtp - Microsoft Exchange

disclaimer on outgoing smtp - Microsoft Exchange


disclaimer on outgoing smtp

Posted: 11 Oct 2005 06:46 AM PDT

I see many complaints about not being able to get this to work..just
wondering if anyone has made it work.

I have Symantec Mail Security installed. Can GFI and Symantec run
simultaneously?

"Mark Arnold [MVP]" wrote:
 

OWA: New User default Time Zone

Posted: 10 Oct 2005 11:06 PM PDT

Not So. Example:
1. Create a new user, and log into OWA via my PC.
2. Time zone is IDLWest -12:00
3. Move mailbox to another information store
4. Log into OWA via my PC
5. Time zone is GMT +10:00 (Corrent Time Zone)

Hence there is something to do with the information store and the time zone.
These cannot be external factors, since the client PC used to access OWA was
exactly the same PC, accessing exactly the same mailbox, but on a different
information store.




"Mark Arnold [MVP]" <org> wrote in message
news:com... 
is 
get 


Outlook Web Access 2003 Premium Client

Posted: 10 Oct 2005 02:13 AM PDT

On Tue, 11 Oct 2005 01:43:10 -0700, "Big Pretender"
<microsoft.com> wrote:
 
What version of OWA you get depends on what your browser is.
CHange to using FBA
(http://www.msexchange.org/pages/search.asp?query=FBA) and then you
will get a screen rather than a pop up window. If your browser isn't
up to it, you won't get an option for Premium. Come back here with the
results.

Problem with Exchange 2003 receiving external emails after dcpromo

Posted: 07 Oct 2005 05:51 PM PDT

Hi Alex,

Thank you for posting here!

However, I notice you have posted the same question in our exchange.setup
newsgroup, which I have already responded. So please check my answer there
and if you need any further assistance on this particular issue, please reply to me
in that thread so I can follow up with you in time. Also, please don't cross-post
the same question in multiple newsgroups in the future so that our engineers can
work on your question efficiently. Your understanding and cooperation is
appreciated.

Thank you and Have a nice day!


Regards,

Martin Qiu
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security

When responding to posts, please "Reply to Group" via your newsreader so that
others may learn and benefit from your issue.
================================================== ===
Business-Critical Phone Support (BCPS) provides you with technical phone support
at no charge during critical LAN outages or "business down" situations. This
benefit is available 24 hours a day, 7 days a week to all Microsoft technology
partners in the United States and Canada.

This and other support options are available here:

BCPS:
https://partner.microsoft.com/US/technicalsupport/supportoverview/40010469
Others: https://partner.microsoft.com/US/technicalsupport/supportoverview/

If you are outside the United States, please visit our International Support page:
http://support.microsoft.com/common/international.aspx
================================================== ===

This posting is provided "AS IS" with no warranties, and confers no rights.


Cache Mode

Posted: 07 Oct 2005 11:39 AM PDT

Have you seen this:
http://support.microsoft.com/default.aspx?scid=kb;en-us;246153 ?
--
Ed Crowley
MVP - Exchange
"Protecting the world from PSTs and brick backups!"


"Stevef" <microsoft.com> wrote in message
news:com... 


Public Folders Going Away after Exchange 2003

Posted: 07 Oct 2005 11:32 AM PDT

I have not heard anything definitively on this. I know that there is a push
to move "collaborative" solutions to other platforms such as SharePoint, but
I doubt that public folders are going to go away in Exchange 12.

--
Jim McBee
- MostlyExchange Blog: http://mostlyexchange.blogspot.com
- Exchange FAQ: http://www.swinc.com/resources/exchange/

"Joe" <microsoft.com> wrote in message
news:com... 


exchange problem, restarting randomly

Posted: 06 Oct 2005 11:02 PM PDT

Still rebootin randomly.
--
Ibe U


"Ibe U" wrote:
 

Exchange databases not compacting

Posted: 06 Oct 2005 08:17 PM PDT

So there's your answer (See Ed's post)
If you see fit to reduce the size of the DIRT you will gain more free
space; when you will then decide to do an eseutil or just to leave it
alone, knowing you have space to spare.

Anyone Using Veritas Enterprise Vault?

Posted: 06 Oct 2005 01:50 PM PDT

On Fri, 7 Oct 2005 12:12:12 -0700, "Martin Tuip [MVP]"
<com.nospam> wrote:
 

And pony up for support. For even the simplest installations you're
going to need some hand holding at times. Or often, just a reminder
how to do something you haven't touched in a year.

Jeff

 

SBS update applied to Exchange 2003 Standard??

Posted: 06 Oct 2005 08:09 AM PDT

Are you having an issue with Exchange/OWA not related to the KB but having
it fixes your problem, the headache of having to add the domain to your
logon credentiatils, or you wish to custom design your OWA interfact?

Modificatin of OWA is here -
http://support.microsoft.com/default.aspx?scid=kb;en-us;321832

The installation of the SBS update will be blocked on non-sbs server. Any
other method of getting the files onto the server is unsupported. The SBS
update also does not contain the latest released version of logon.asp that
is in sync with exoledb that is used by logon.asp.



"Lanwench [MVP - Exchange]"
<donotsendme.unsolicitedmail.atyahoo.com> wrote in message
news:phx.gbl... 


Redirect

Posted: 06 Oct 2005 05:12 AM PDT

user properties in ADUC (exchange general -> delivery options)
you have the option to forward to another user and deliver to original
person also

"David Cleland" <com> wrote in message
news:phx.gbl... 


Changing if IP Address

Posted: 05 Oct 2005 11:24 PM PDT

Sir?!!!! She's very definitely a ma'am.
--
Ed Crowley
MVP - Exchange
"Protecting the world from PSTs and brick backups!"

"Noemi Gumban" <microsoft.com> wrote in message
news:com... 


Personal Signatures setup through Exchange?

Posted: 05 Oct 2005 12:06 PM PDT

On Fri, 7 Oct 2005 20:36:26 -0700, "Ed Crowley [MVP]"
<org> wrote:
 

When I said "Not in Exchange" I suppose the correct thing to say would
be "Not with Exchange", a subtle difference.

Yes, the folk would need, if they use OWA, to construct two
signatures, one for their Outlook and one for the OWA.

Exchange 2003 STD. SP2 Mailbox size 18GB

Posted: 05 Oct 2005 06:26 AM PDT

Did you read the release notes?
--
Ed Crowley
MVP - Exchange
"Protecting the world from PSTs and brick backups!"

"Jamesh512" <microsoft.com> wrote in message
news:com... 


Exchange DN incorrect

Posted: 04 Oct 2005 07:31 PM PDT

If this is a case of the name being stuck in Outlook's name cache, you can
select the name and hit Delete to remove it.
--
Ed Crowley
MVP - Exchange
"Protecting the world from PSTs and brick backups!"

"Jason" <microsoft.com> wrote in message
news:com...