I've sorted my data into a user defined type where Dy is the date of the measurement, Tm is the time, and pH is the measurement.
Type pHData
Dy As Date
Tm As Date
pH As Single
End Type
Now I would like to sort the data by day (each day has a different number of data points), so that I can find the mean, min, max, etc. I've already made an array of the unique dates, so now I want to select values for each unique date
Something like (sorry the syntax is not perfect, but I hope you get the idea):
For i = LBound(uniqueArr) to UBound(uniqueArr)
For j = LBound(pHData) to UBound(pHData)
if pHData.Dy(j)== uniqueArr(i)
'store in temp array to find mean, etc.'
else
Next i
Next j
Any suggestions?
If you just want the min, max, mean, then you don't need to store the values in a temp array. See example below. Also, take care to write
pHData(j).Dy
, notpHData.Dy(j)
.If you really want to store things in a temp array, the code will be more messy and also slower... Here we go: