Hello,
Referenced spreadsheet attached below.
I have an Excel document which receives data dump from a weather website cells B1:I20.
I need the temperature and dew point from cells B3:I3, however the data is returned in a "Temperature / Dew Point" format. To use the data, I separate the Temp and DP into their own cells B22:I23 by:
Temp =LEFT(B3,FIND("/",B3)-1)
DP =RIGHT(B3,FIND("/",B3)-2)
I use to the data to figure the High, Average, and Low values for both variables in the following array in cells B25:G25:
For Temp...
High Temp =MAX(LEFT($B22:$I22&"0",2)*1)
Avg Temp =AVERAGE(LEFT($B22:$I22&"0",2)*1)
Low Temp =MIN(LEFT($B22:$I22&"0",2)*1)
For DP...
High DP =MAX(LEFT($B23:$I23&"0",2)*1)
Avg DP =AVERAGE(LEFT($B23:$I23&"0",2)*1)
Low DP =MIN(LEFT($B23:$I23&"0",2)*1)
However, on occasion, the array will return an incorrect result, for example today it shows the High DP as being 90, but should only be 14.
Any ideas of another way of doing this?
Thanks!
Bookmarks