I have a two querys which put together some data for a "job". I'm trying to put all of this data onto emails and most of this is set up. The last problem I seem to have is when using concatenation the text string becomes short text. So in long entries data can be lost (not visible to who we send the job too).
Query 1:
this does some formatting for each entry.
Code:
Note: [notes] & "
" & [Date_Added] & "
"
Query 2:
this combines each note for a job. Making it one text string to insert into the email.
Code:
Notes: ConcatRelated("Note","z_concatrelated_test","Job_ID = " & [job_ID])
The "notes" field is in a notes table linked to the jobs table. This is a long text field. The date_added field is associated with each note and is added automatically when an entry is made. This is a date/time field.
If it's not possible to make the result long text, I would appreciate alternative suggestions.
Thanks!
I want this data to be put into excel where I will use some other code I have to make the apointments. Its possible to merge the related data in excel or use VBA to achieve what i need. I'm unsure whats the best to do now.