Hi everyone.
With ASP I register in DB Access rows of one file excel; this procedure works but problem: Access record double rows of file excel.
You can exclude from registration double rows ?
I attach the file excel record to access.
I register with this logic:
1) all rows;
2) where rows no data register date of today;
3) if same row with a date and the other undated eliminate row undate.
Register rows excel file number: 1, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14
Discard rows 2, 3 and 5
In the field date rows 6, 7, 8, 9, 10, 11, 12, 13, 14 record date of today.
Help please.
Viki1967
With ASP I register in DB Access rows of one file excel; this procedure works but problem: Access record double rows of file excel.
You can exclude from registration double rows ?
I attach the file excel record to access.
I register with this logic:
1) all rows;
2) where rows no data register date of today;
3) if same row with a date and the other undated eliminate row undate.
Register rows excel file number: 1, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14
Discard rows 2, 3 and 5
In the field date rows 6, 7, 8, 9, 10, 11, 12, 13, 14 record date of today.
Code:
<!--#include virtual="/include/ConnMySQL.asp"-->
<%
Set Rs = Server.CreateObject("ADODB.Recordset")
Rs.Open "SELECT DISTINCT * from [Foglio1$]", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("/public/UploadFolder/Book-2.xls")&";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"""
Do Until Rs.Eof
if IsDate(Rs("DATA")) then
strData = formatDBDate(Rs("DATA"), "mysql")
strSql = "INSERT INTO Tabella (F1, F2, DataF3) VALUES ( " & Rs("f1") & ", '" & Rs("f2") & "', " & strData & ") "
else
strData = formatDBDate(Date(), "mysql")
strSql = "INSERT INTO Tabella (F1, F2, DataF3) VALUES ( " & Rs("f1") & ", '" & Rs("f2") & "', " & strData & ") "
end if
objconn.execute(strSql)
response.write strSQL &"<br />"
Rs.MoveNext
Loop
Rs.close()
set Rs = nothing
objconn.Close()
Set objconn = Nothing
%>
Viki1967
Comment