Hello!
I’m stuck trying to use the AVERAGEIFS function to reduce a large table with measurement values for almost each second for the duration of one day. The intention is to reduce this by averaging measurements for each minute.
Table 1 is arranged like:
date | time | value
dd:mm:yy | hh:mm:ss | xx
For a table with average values for each minute I created a separate spreadsheet with only two columns
time | average(value)
hh:mm | xx
The function at the second table for the average looks like this:
=AVERAGEIFS($Tabelle1.$C$2:$C$42598,$Table1.$B$2:$B$42598,">="&$A2,$Table1.$B$2:$B$42598,"<"&$A3)
…resulting in a #DIV/0! error. Where did I go wrong?