Why is my sheet intermittently displaying error messages & Report always displaying error messages. One minute the columns have data then randomly they all show up with the error messages? My report consistently ONLY displays error messages.
I have a sheet performing calculations related to consumption of water based on a form submission containing Form Submission Date, Meter Reading, Car Count. My form users aren't consistent about completing said form (sometimes they miss a day, sometimes they submit twice … see picture below)
Calculated columns are as follows…
Meter Reading (Gallons) =IF([MeasurementType]@row = "Cubic Feet", (VALUE([MeterReading]@row ) * 7.48052),VALUE([Meter Reading]@row ))
Yesterdays Meter Reading (Gallons) =IFERROR(INDEX(COLLECT([Meter Reading(Gallons)]:[Meter Reading (Gallons)], [Full Site Name]:[Full Site Name], [FullSite Name]@row , [Form Submission Date]:[Form Submission Date], [Form SubmissionDate]@row - 1), 1), "Missing Previous Day")
Consumption (Gallons) =IFERROR([Meter Reading (Gallons)]@row - [YesterdaysMeter Reading (Gallons)]@row , "Missing Data to Calculate")
Consumption Gallon / Car =IF([Consumption (Gallons)]@row = "Missing Datato Calculate", "Missing Data to Calculate", IF(VALUE([CarCount]@row ) > 0, VALUE([Consumption (Gallons)]@row ) / VALUE([CarCount]@row )))
One minute my sheet looks like this…
Then next time I look it looks like this…
My report consistently looks like this…