How to create a blank line in custom reports

Hi,

I’m trying to create a blank line in my custom reports so when this report is printed, it’s easier to read.

Could anyone guide me on how to do this?

Here are some pics and the code to give a better idea:

[Punch Report:5,5,5]
>>Clocked In|Clock Out|Hrs Worked
@{REPORT TASK DETAILS:TSC.User.asc:(TST=Punch) && T.Completed=True:,}
>>$1
{REPORT TASK DETAILS:
	T.StartDate,
	T.StartTime,
	T.EndDate,
	T.EndTime,
	=TN([T.Duration]/60);0.00,
	[TSD.Break.sum]/60/60;0.00,
	=TN(([T.Duration]-([TSD.Break]/60))/60);0.00,
:(TST=Punch) && T.Completed=True && (TSC.User=$1)
:[=FD('{0}','M\/d')] [=FD('{1}','hh\:mm')]|[=FD('{2}','M\/d')] [=FD('{3}','hh\:mm')]|{6}}
>Total|Entries: {REPORT TASK DETAILS:T.EndDate.count:(TST=Punch) && T.Completed=True && (TSC.User=$1)}|{REPORT TASK DETAILS:=[([T.Duration]-([TSD.Break]/60)).Sum] / 60,=[([T.Duration]-([TSD.Break]/60)).Sum] % 60:(TST=Punch) && T.Completed=True && (TSC.User=$1):[=F(TN('{0}'))]\}
1 Like

I would really like to know that too!

I know that {REPORT WHATEVER DETAILS:x},\r\n works in Data Export though. Can you try that?

I wonder if anyone knows how to highlight it in report like this
image

Where would I add that code sorry?

You add ,\r\n after }

1 Like