Johnnycat1
Programmer
The subject pretty much says it all. I need to be able to export a query to an Excel spreadsheet but I can't have it drop all characters above the allowed 255.
Please help with either a workaround or direction to make this work. Thank you in advance!
The code that I am using is as follows:
nanos gigantum humeris insidentes
A dwarf on the shoulders of giants...
Please help with either a workaround or direction to make this work. Thank you in advance!
The code that I am using is as follows:
Code:
Dim stDocName As String
stDocName = "QryLessonsLearnedExcel"
DoCmd.OutputTo acOutputQuery, stDocName, acFormatRTF, "C:\" & Me.Abbreviation & " - Lessons Learned" & Me.year & IIf(Me.month < 10, "0" & Me.month, Me.month) & IIf(Me.Day < 10, "0" & Me.Day, Me.Day) & ".RTF", True
nanos gigantum humeris insidentes
A dwarf on the shoulders of giants...