I would like to use the module to display information from the webform submitted with the highest number in a particular field. I can pull in the information from all submitted entries and sort it so the information from the entry with the highest score appears first. But is there a way to only show the information from the entry with the highest score? Can this be done using the existing filter? If so, what do I need to set the Filter Type and Filter Value to? If it cannot be done with the current filter, is it possible to add a filter to accomplish this?

Comments

jimbullington’s picture

Status: Active » Needs review

You could do this with php code - something like:

$tmp = $rows;
$rows = array();
$rows[] = $tmp[0];

You will also need to sort by the score column descending.