$Date:=Date(Request("Date of meeting";String(Current date))) If($Date#!00/00/00!) `有効な日付 $Time:=Time(Request("Time of meeting";Time string(Current time))) If($Time#?00:00:00?) `有効な時間 `会議の日程を1日後の30 分遅い時間に変更し、それをセルA1に割り当てる PV SET CELL DATE TIME VALUE(Area;1;1;$Date+1;$Time+?00:30:00?) PV GET CELL DATE TIME VALUE(Area;1;1;$Date;$Time) `情報を読み込む ALERT("The meeting has been pushed ahead to "+String($Date)+" at "+Time string($Time)) End if End if