D
Dave
Using asp and my access db, I import class rosters into a transportation log
(excel ss).
In one record field, there is a data value "instructor". I want to know,
based on the word
"instructor", can I insert 3 blank rows about the instructors row of data.
The purpose is so the instructor's information stands out when this
information goes to a hotel and
airlines.
I have the query all set up and the hope is that a conditional statement
will see "instructor", insert 3 blank rows and then display the instructor's
row of data.
Is this possible?
Do While Not rs.Eof
If rs("Att") = "Instructor"
????
Else
Response.Write rs("Att")
End If
rs.movement
loop
Thanks in advance
(excel ss).
In one record field, there is a data value "instructor". I want to know,
based on the word
"instructor", can I insert 3 blank rows about the instructors row of data.
The purpose is so the instructor's information stands out when this
information goes to a hotel and
airlines.
I have the query all set up and the hope is that a conditional statement
will see "instructor", insert 3 blank rows and then display the instructor's
row of data.
Is this possible?
Do While Not rs.Eof
If rs("Att") = "Instructor"
????
Else
Response.Write rs("Att")
End If
rs.movement
loop
Thanks in advance