次の Blue Prism プロセス図を調べてください。

「新しい日付」データ項目は日付データ型であり、初期値はありません。
以下に「計算ステージのプロパティ」ウィンドウが表示されます。

「新しい日付の作成」ステージを実行するとどうなりますか?
正解:A
* Understanding the Calculation Stage:
* The calculation stage in Blue Prism is used to perform calculations and store the result in a specified data item.
* The expression used in the calculation stage is DateAdd(0, 1, Today()).
* Analyzing the DateAdd Function:
* DateAdd(interval, number, date) is a function that adds a specified number of intervals to a given date.
* The first parameter (interval) specifies the type of interval to add. In this case, it is 0.
* The second parameter (number) specifies the number of intervals to add. In this case, it is 1.
* The third parameter (date) specifies the starting date. In this case, it is Today().
* Interval Values in DateAdd Function:
* In Blue Prism, the DateAdd function uses specific interval values:
* 0 for years
* 1 for months
* 2 for days
* 3 for hours
* 4 for minutes
* 5 for seconds
* Given that the interval parameter is 0, it means that the function will add years.
* Conclusion:
* The DateAdd(0, 1, Today()) expression will add 1 year to today's date.
* Therefore, the result will be stored in the 'New Date' data item, and the correct answer is:
* A. 1 year will be added to today's date and the result stored in the 'New Date' data item.
References:
* Blue Prism Developer Documentation: Date Functions
* Blue Prism Training Material on Calculation Stages and Date Manipulation