2015-05-20 30 views
0

因此,我將Excel工作表導入到datagridview。但不幸的是,裏面包含了一些空元組。圖像將有一定的幫助。額外的NULL元組是41和42。現在,當我從計算這些元組與一個循環的數據百分比,迴路達到這些空行,並顯示空值在vb.net的datagridview中創建錯誤

Error:{"Conversion from type 'DBNull' to type 'Integer' is not valid."} 

enter image description here

什麼do..Any建議將有很大的幫助!謝謝......

+0

向我們顯示您的代碼,以便我們可以幫助您 – equisde

回答

0

可以插入如果條件如果單元格內容的DBNull先評估。下面是我在一些自己的項目中使用它的示例:

If IsDBNull(part.Item("Assignment Category")) = False Then 
     newOracleHREmployeeRecord.AssignmentCategory = CStr(part.Item("Assignment Category")) 
End If