Hi, I'm using VB.NET to access Excel and I'm wondering how to get information about cell errors within a range object's Value property. The following simple code gives the current selection's value in rng, but I don't get information about e.g. xlErrNum, xlErrDiv0, xlErr* as I got in VB6 (or in VBA). Is there any possibility to get the "raw" VARIANT values instead of the (from my point of view) crippled object values to also find out about VT_ERROR values? Thomas Public Class Form1 Private xl As New Excel.Application Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim rng As Excel.Range Dim res rng = xl.ActiveWindow.Selection res = rng.Value End Sub End Class