FA欄を複数設置したとき、上から詰めて入力していない場合エラーを出す方法をご説明します。
――サンプル画面―――――――――――――――――――――――――――――――――――
画面一覧 https://test-bds.post-survey.com/preview/previewPageAll.php?key=3AHQLTA9
画面遷移デモ https://test-bds.post-survey.com/preview/index.php?key=3AHQLTA9&lang_c=ja
―――――――――――――――――――――――――――――――――――――――――――
▼メッセージ
上から詰めて入力してください。
▼条件式
( $$[t1]->empty && $$[t2..5]->fill ) ||
( $$[t2]->empty && $$[t3..5]->fill ) ||
( $$[t3]->empty && $$[t4..5]->fill ) ||
( $$[t4]->empty && $$[t5]->fill )
---
$$ :code文を設定する設問番号を取得
[t1] :自由記述欄1
[t2..5] :自由記述欄2~5のいずれか
->empty:記入していない
->fill :記入した
&& :かつ
|| :または