次のようなスクリプトに取り込んでいる Google スプレッドシートにいくつかの日付があります。
var JCstartDateFix = Math.floor(Date.parse(JCstartDate) / 86400000) + 25570;
var todaysDateFix = Math.floor(Date.parse(todaysDate) / 86400000) + 25570;
mm/dd/yyyy 形式の日付に戻すには、スクリプトの最後でこれとは逆の操作を行うにはどうすればよいですか?
これについて何か助けてくれてありがとう。
スクリプト全体は次のとおりです。
function projectedDate(JCstartDate, overallPercent, pace, todaysDate, HSstartDate, DaysInHS) {
//converts dates to a number of days
var JCstartDateFix = Math.floor(Date.parse(JCstartDate) / 86400000) + 25570;
var todaysDateFix = Math.floor(Date.parse(todaysDate) / 86400000) + 25570;
//This says that there's no projected date since the student hasn't started high school yet
if(HSstartDate == ""){
return "HS not started";
}
//This calculates grad date if the student's been here more than 8 months or if their percent is over 80.
else if(DaysInHS >= 200 || overallPercent >=80){
var percentPerDay = overallPercent/(DaysInHS);
var daysLeft = (100 - overallPercent) / percentPerDay;
if((todaysDateFix + daysLeft) > (JCstartDateFix +730)){
return "You are not on track to complete.";
}
else{
return (todaysDateFix + daysLeft);
}
}
//This calculates grad date if the student's been at JC less than 8 months
else{
if(JCstartDateFix + 600 - pace > JCstartDateFix + 730){
return "You are not on track to complete.";
}
else{
return (JCstartDateFix+600-pace);
}
}
}
私は、生徒がさまざまな時間に開始し、自分のペースで学習する学校で働いています。彼らは終了するのに2年の制限があります。そのため、このスクリプトは、開始時期と進捗状況に基づいて卒業日を推定します。彼らがここにいる期間に応じて、異なる式を使用します。スプレッドシートで取得した日付には満足していますが、スプレッドシートから日付をフォーマットすると、別のスクリプトがテキスト文字列を正しく取得せず、代わりに 1969 年の日付が返されます。
私がする必要があるのは、数値を返す行を変更して、それらの数値が日付としてフォーマットされるようにすることだと思います。方法がわかりません。再度、感謝します!