Home > Software design >  adding hours (9:00) to a start shift column
adding hours (9:00) to a start shift column

Time:02-10

I'm trying to add 9 hours to this column and if there's a text like (off, annual, ..etc), then put the same text. but i found an error in the generated column, is there any one have an idea to to solve this problementer image description here

CodePudding user response:

Perhaps:

try Time.From([Start Shift])   #duration(0, 9, 0, 0) otherwise [Start Shift]
  • Related