Create a constructed list with these instructions:
Begin Unverified Perl
# Settings
my $frequencyQuestion = 'Q2';
# Run
my $parentList = PARENTLISTNAME();
my $bestScore = 999;
for (my $i = 1; $i <= LISTLENGTH($parentList); $i++) {
my $score = GETVALUE($frequencyQuestion . '.' . $i);
if ($score) {
if ($score < $bestScore) {
REMOVE($parentList);
$bestScore = $score;
}
if ($score == $bestScore) {
ADD($parentList, $i);
}
}
}
End Unverified
"Q2" should be updated with the name of your "times per week" question.
Now, create a radio-type select question Q3 and give it this constructed list. If a tie exists, respondents will see this question and have to select an item. If no tie exists, Q3 will automatically skip and select the best item.