I have a custom column title in ReportNet, I'm concatenating text and query items:
'Current Week' || to_char([Current Week Starting Date],'mm/dd/yyyy') || ' - ' || to_char([Current Week Ending Date],'mm/dd/yyyy')
This works but it is coming through as:
Current Week 11/06/2005 - 11/12/2005 (all on one line).
The column title should look like:
Current Week
11/06/2005 - 11/12/2005
How can I insert a carriage return after the 'Current Week' text? Or is there another way to force a carriage return in the column title?
Thanks,
'Current Week' || to_char([Current Week Starting Date],'mm/dd/yyyy') || ' - ' || to_char([Current Week Ending Date],'mm/dd/yyyy')
This works but it is coming through as:
Current Week 11/06/2005 - 11/12/2005 (all on one line).
The column title should look like:
Current Week
11/06/2005 - 11/12/2005
How can I insert a carriage return after the 'Current Week' text? Or is there another way to force a carriage return in the column title?
Thanks,