thread703-812556
I found some code that lets you add text to a text box and have it display on the report in report view.
This works great but if you put it in the details section, it shows for each record and if you put if on a group level, it's the same information for each group.
Any ideas on how I could have it different for each group or detail?
My report is broken down by
GH1 - Login Date
GH2 - Emp Name
Details - Field1 field2 field3 field4 Total of Fields 1-3.
What I would like to do is for each day, have an textbox that allows you to enter notes for each day for each employee. So if their count is 0 for that day, you could add snow day or sick day or something that would print with the report.
lhuffst
I found some code that lets you add text to a text box and have it display on the report in report view.
Code:
Option Explicit
Dim SaveTyping as String
Private sub text1_keyup(KeyCode as Integer, Shift as Integer)
SaveTyping = Me.text1.Text
end Sub
Private sub text1_lostfocus()
Me.text1 = SaveTyping
end sub
Any ideas on how I could have it different for each group or detail?
My report is broken down by
GH1 - Login Date
GH2 - Emp Name
Details - Field1 field2 field3 field4 Total of Fields 1-3.
What I would like to do is for each day, have an textbox that allows you to enter notes for each day for each employee. So if their count is 0 for that day, you could add snow day or sick day or something that would print with the report.
lhuffst