Mr.Morning Posted November 30, 2001 Posted November 30, 2001 BACKGROUND I have a variety of records with notes on them. Each new record for Bob, Cindy or Tom can be for a previous project or a new project. I currently have them as a portal with scroll bars for when the information is to long and it works fine for viewing on screen. But I would like to print out the list of combined notes for a project on one sheet.
tlsparker Posted November 30, 2001 Posted November 30, 2001 If you want all notes for a particular project to appear in one field for printing, you could create a global text field (call it, gProjectNotes for example). Then, create a script that finds all records for the project. Loop through the found set and for each record, Set Field (gProjectNotes, gProjectNotes& (return character)& Person & (tab character) & Note). As you loop through, you are adding a line to the field until you have created a list of notes with the appropriate person's name by each note. You could sort the list after doing the initial find to have notes appear by person in alpha order. There may be simpler ways to accomplish this, however. If you post your file structure and which fields you are using, we might come up with other ideas.
Thom Posted December 1, 2001 Posted December 1, 2001 From the projects file, do Go to Related Record [show] to find the notes for a given project in the notes file. Print from the notes file. If you have a relationship from the notes file to the project file, you can include project information.
Mr.Morning Posted December 2, 2001 Author Posted December 2, 2001 I think the global field, looping solution should work. Thanks, -Morning Man
Vaughan Posted December 2, 2001 Posted December 2, 2001 It should work, yes. But the suggestion to do the printing from the related field is the better way to do it. The scripted solution will only be accurate if the script is run each time, and that could be a long process in itself, epecially if used multi-user.
Recommended Posts
This topic is 8393 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now