0

How can i clear date format field in project using PSI? i do

taskRow.TASK_FINISH_DATE = newTask.FinishDate;

Where taskRow is ProjectDataSet.TaskRow class and newTask.FinishDate is DateTime But there are GeneralDateNotValid exception - TASK_FINISH_DATE cant be less than 01.01.1984.

DeRibura
  • 67
  • 3
  • 7

1 Answers1

0

There is method

taskRow.SetTASK_FINISHDATENull();

it works.

DeRibura
  • 67
  • 3
  • 7