|
|
|
check colunm ของ excel file ต้องการ check colunm ของ excelว่ามีกี่ column ต้องเขียน if อย่างไรบ้างค่ะ |
|
|
|
|
|
|
|
ต้องการ check colunm ของ excelว่ามีกี่colunm ต้องเขียน if อย่างไรบ้างค่ะ code เป็นแบบนี้ค่ะ
Code (ASP)
For i = 2 To 502
If Trim(xlSheet1.Cells.Item(i,1)) <> "" Then
strSQL = ""
strSQL = strSQL &" INSERT INTO meterial_master "
strSQL = strSQL &" (Material_Code,Plant,Valuation_Type,Material_Description,Material_Type,Material_Group,Base_Unit) "
strSQL = strSQL &" VALUES "
strSQL = strSQL &" ('"&xlSheet1.Cells.Item(i,1)&"','"&xlSheet1.Cells.Item(i,2)&"','"&xlSheet1.Cells.Item(i,3)&"','"&xlSheet1.Cells.Item(i,4)&"' "
strSQL = strSQL &",'"&xlSheet1.Cells.Item(i,5)&"','"&xlSheet1.Cells.Item(i,6)&"','"&xlSheet1.Cells.Item(i,7)&"') "
Tag : - - - -
|
|
|
|
|
|
Date :
2010-04-09 09:18:13 |
By :
nok |
View :
1614 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
While NOT xlSheet1.Cells.Item(i,1) <> ""
Wend
|
|
|
|
|
Date :
2012-07-01 20:30:18 |
By :
d |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|