M
Marc
I use a form to capture an employee's Name, job location, employee #
and enter it on a slide which will be printed.
(the code's not shown here) - this isn't the problem...
Currently, I also export this info to a .txt file:
Open "C:\Test.txt" For Append As #1
Print #1, userFirstName, userLastName, Station, EmpNum, Now, vbCrLf
Close #1
That works OK, but I'd rather to send/append it to an .xls,
which would make it much easier to manipulate (sort).
Can this be done? Alternate solutions?
THANKS
and enter it on a slide which will be printed.
(the code's not shown here) - this isn't the problem...
Currently, I also export this info to a .txt file:
Open "C:\Test.txt" For Append As #1
Print #1, userFirstName, userLastName, Station, EmpNum, Now, vbCrLf
Close #1
That works OK, but I'd rather to send/append it to an .xls,
which would make it much easier to manipulate (sort).
Can this be done? Alternate solutions?
THANKS