Initial Value of Duration Type Column

Hi I am looking to set the Initial Value of a duration column called [Time Allotted]. The initial value formula would be based on the number of people selected in the [Resource] column. 1 person selected, [Time Allotted]= 2 hours, 2 people selected, [Time Allotted]=1 hour, 3 people selected, [Time Allotted] 30 mins etcโ€ฆ

Could anyone suggest how to address this problem?

Many thanks.

Maurice.

Solved Solved
0 13 434
1 ACCEPTED SOLUTION

Perhaps something like:

CONCATENATE(
  FLOOR([minutes] / 60),
  ":",
  RIGHT(("00" & MOD([minutes], 60)), 2),
  ":00"
)

View solution in original post

13 REPLIES 13
Top Labels in this Space