HiI got the dataLogTime | Value2011-01-01 13:00:00 | 102011-01-01 14:00:00 | NULL2011-01-01 15:00:00 | 402011-01-01 16:00:00 | NULL2011-01-01 17:00:00 | NULL2011-01-01 18:00:00 | NULL2011-01-01 19:00:00 | 120
And i need to fill the NULL value with interpolating data between this records.so it looks more like this:LogTime | Value2011-01-01 13:00:00 | 102011-01-01 14:00:00 | 252011-01-01 15:00:00 | 402011-01-01 16:00:00 | 602011-01-01 17:00:00 | 802011-01-01 18:00:00 | 1002011-01-01 19:00:00 | 120
How can it be possible to doing that?Thanks!