Share via

Changing Date format by task

Anonymous
2015-09-03T09:07:51+00:00

Hi,

I understand that there is a global date format change for the entire project file.  However, what I want to do is this within the same project file:-

  • select a date display format, which include hours, for tasks that needs to be completed on hourly basis.  ie. display format DD/MM/YY HH:MM for the start and end date columns.
  • select a date display format, which does not include hours, for tasks that require days for completion.

An example, is preparation for a IT activity is planned in days, whereas once the IT activity is triggered, the task is planned in hours.  All this is shown in the same project file.

Appreciate any feedback - positive or negative.

Thanks & Rgds.

Microsoft 365 and Office
Microsoft 365 and Office

A comprehensive suite of productivity tools and cloud services that enhance collaboration, communication, and efficiency. Combining classic Office apps with advanced Microsoft 365 features, it supports both personal and business needs

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Anonymous
    2015-09-03T22:18:42+00:00

    Apart from "it can't be done", it is probably best not to do it. I would just set the global format to HH:mm and accept it for all of the tasks because the only downside is that some tasks have more information than needed. Every start and finish will have a date and time so why not display them both?

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-09-03T14:38:36+00:00

    A couple of thoughts:

    The duration and/or the work field may be easier for stakeholders to understand than start and end dates.

    You can also vary the date format per table (part of a view).  So you could create an IT view filtered to show just tasks assigned to IT and in the table definition use the long format.

    You cannot however, show just date for some tasks and date/time for others.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2015-09-03T12:24:23+00:00

    You can use custom field formulas for this purpose:

    Text1 field's formula (rename to Start, if you want):

    iif( [%Complete] = 0, Format( [Start], "dd/mm/yy" ), Format( [Start], "dd/mm/yy hh:mm" ) )

    Text2 field's formula (rename to Finish, if you want):

    iif( [%Complete] = 0, Format( [Finish], "dd/mm/yy" ), Format( [Finish], "dd/mm/yy  hh:mm" ) )

    Was this answer helpful?

    0 comments No comments