Showing posts with label Project 365. Show all posts
Showing posts with label Project 365. Show all posts

Friday, May 18, 2018

Enterprise Custom Field in Microsoft Project Server or Project Online

Enterprise Custom Fields in Microsoft Project Server or Project Online

The purpose of this article is to offer a set of formulas that can be used with different versions of the desktop Microsoft Project application i.e. Project Server or Project Online.

Summary: Use the New Custom Field page in Project Web App settings to specify the options for a custom field.

Applies to: Project Server 2016, Project Server 2013
_________________________________________________________________________________

Tasks That Have Negative Total Slack

Purpose: The Negative Slack field shows the amount of negative slack for a task indicating the amount of time that must be saved so that successor tasks are not delayed.
Negative slack indicates that there is not enough time scheduled for the task and if not catered it may result in delays in project.

Field Type: Flag

Formula: IIf([Total Slack]<0,True,False)

________________________________________________________________________________

Project Baseline Indicator

Purpose: A baseline allows a user to compare a Project's current Start and Finish dates to the originally planned Start and Finish Dates.

Field Type: Flag

Formula: [Baseline Start] = ProjDateValue("NA")


_________________________________________________________________________________

If Tasks Have Dependencies?

Purpose: A task that does not have any predecessors or successors may not properly show its impact to other tasks in the schedule.

Field Type: Flag

Formula: IIf(([Predecessors]="" Or [Successors]="") And [Summary]=False,True,False)

_________________________________________________________________________________

Task Start Date or Finish Date Needs To Be Updated

Purpose: Makes it easy to see when a task’s Start is earlier than the current date, but still is 0 % Complete, or a task’s Finish is earlier than the current date, but less than 100 % complete.

Field Type: Text

Formula: Switch(Date()>[Start] And [% Complete]=0,"Should Have Started",
Date()<=[Finish] And [% Complete]<100,"Should Have Finished", Date ()<=[Start],"",
Date()<=[Finish],"")


Sunday, February 8, 2015

Graphical Indicators with Custom Fields - Microsoft Project Server 2013 | Microsoft Project Online

Graphical Indicators with Custom Fields - Microsoft Project Server 2013 | Microsoft Project Online

Microsoft Project Server/Online facilitates with several custom fields that a user can define and use to meet their organization's needs. You can create new custom fields that full fill your specific requirement, customize an existing field and then insert it into your project,  or you can also simply rename existing fields to customize them.

Enterprise Custom Fields includes different sets of variables, option of inserting custom formulas, can use lookup tables (as defined by user) and graphical indicators to add look & feel to a value. In example below I have done same thing, I have used the Project Percentage Completion value & by using graphical indicators i have added some colors to a number value.

Software Testing and STLC (Software Testing Life Cycle)

Software Testing and Software Testing Life Cycle Software Testing: Testing is the process of exercising the software product in pre-define...