By using this website, you agree to our Terms of Use (click here)
Hi Team,
We have customised a invoice form to add the note section into the body of the report as per screenshots below
It works well but when you export it to a pdf it cuts off the content in the note section?
The code is:
=IIf( InStr( [PMProject.NoteText], '<<')>=0 and InStrRev( [PMProject.NoteText], '>>')>0,
Substring( [PMProject.NoteText],
InStr( [PMProject.NoteText], '<<') + 2,
InStr( [PMProject.NoteText], '>>') - InStr( [PMProject.NoteText], '<<') - 2
), '')
PDF looks like this:
Normal invoice screen works fine:
I have tried the can shrink and can split and it doesn't seem to work?
Problem is the size of the group is fixed - so it's clipping the field. Unfortunately you need to pre-allocate space for the note in the group. I've never found a clean solution for dynamically sizing groups. Shame there's no Can Grow Group property.