Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Try this
List("\n",
IF(Trim([Question 1])<>"","Question 1 taken"),
IF(Trim([Question 2])<>"","Question 2 taken"),
IF(Trim([Question 3])<>"","Question 3 taken"))
The result would be a vertical list like
Question 1 taken
Question 3 taken
If they answered questions 1 &3.
The report filter could use the contains as a filter like
where [Questions Taken] Contains 1
List("\n",
IF(Trim([Question 1])<>"","Question 1 taken"),
IF(Trim([Question 2])<>"","Question 2 taken"),
IF(Trim([Question 3])<>"","Question 3 taken"))
The result would be a vertical list like
Question 1 taken
Question 3 taken
If they answered questions 1 &3.
The report filter could use the contains as a filter like
where [Questions Taken] Contains 1