There are some data entries that look suspect, but I'm not sure if I want to manually delete data, as this would mean that we are being selective we the data.
It would be a good idea to implement basic validation to check that the submitted data is a multiple of the number of items from that lockbox. Being totally honest, I'm not familiar with Google Sheets nor the Apps Scripting language, and am not sure how to best go about doing validation on ranges.
Having said that, this is one of the formulae I hacked together to perform said validation:
=ARRAYFORMULA(SUM(IF(ISBLANK('Form Responses'!E2:E)=FALSE,IF(MOD(('Form Responses'!E2:E+'Form Responses'!F2:F+'Form Responses'!G2:G+'Form Responses'!H2:H),2)=0, 'Form Responses'!E2:E, 0),0)))
There's a sizeable difference between the new 'validated frequency' column and the originals, so I'd rather someone check over my formulae to before I changed the main frequency column in case I screwed something up.
This is my attempt at explaining wth the formula does: Checks if row is for submission of specified tier (in this case, T2), and then checks that the SUM of all the results from that row is a multiple of the number of items in the lockbox. If any of these checks are failed, the total for that row is returned as 0.