<p>Converting your value in milliseconds to days is simply <code>(MsValue / 86,400,000)</code></p>
<p>We can get 1/1/1970 as numeric value by DATE(1970,1,1)</p>
<pre><code class="lang-auto">= (MsValueCellReference / 86400000) + DATE(1970,1,1)
</code></pre>
<p>Using your value of 1271664970687 and formatting it as <code>dd/mm/yyyy hh:mm:ss</code> gives me a date and time of 19/04/2010 08:16:11</p>