A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Dear tom.db,
Use the below formula to extract the value of temperature.
Data has been assumed to be in Column A, beginning from cell A2.
=VALUE(SUBSTITUTE(MID(A2,FIND("C,",A2,1)+2,10),CHAR(44),".",1))
FIND will find the location of the text "C,"
MID will extract the required text, 2 places after the text "C,"
SUBSTITUTE and CHAR(44) will replace the comma with a decimal point
VALUE will convert the text result to numeric value.
You can either use Data - Text to Columns for the rest of the data, or else we can alter the above formula to suit the rest of the data.
Generally, I use IFERROR(AboveFormula,0) or IFERROR(AboveFormula,"-") , to get a zero or "-" as the result in case of an error.
Do let me know if this was what you wanted to do.
Vijaykumar Shetye, Goa, India