Dim x = e.CellValue1?.ToString()
Dim x As String = If(e.CellValue1 IsNot Nothing, e.CellValue1.ToString(), Nothing)