Does anyone know how I can move column to farther the right in a FML report?
I like what this produces:
TABLE FILE ACCOUNTHIER
SUM
'DV' AS ''
FOR
ACCOUNTHIER.ACCOUNT.ASSET_LINE
'A' AS CAPTION LABEL R1 OVER
'A' GET CHILDREN ALL AS CAPTION LABEL R2 OVER
'BAR' AS '-' OVER
'D' AS CAPTION LABEL R4 OVER
BAR AS '='
...
Result:
Opening $123,456
Net Transfers $123
Income $456
--------
Closing $234,567
========
However, I need the column containg the numbers printing farther right
If I add spacer columns like below:
[CODE]
TABLE FILE ACCOUNTHIER
SUM
COMPUTE SP1/A1 = ' '; AS ''
COMPUTE SP2/A1 = ' '; AS ''
COMPUTE SP3/A1 = ' '; AS ''
COMPUTE SP4/A1 = ' '; AS ''
COMPUTE SP5/A1 = ' '; AS ''
COMPUTE SP6/A1 = ' '; AS ''
COMPUTE SP7/A1 = ' '; AS ''
COMPUTE SP8/A1 = ' '; AS ''
COMPUTE SP9/A1 = ' '; AS ''
'DV' AS ''
FOR
ACCOUNTHIER.ACCOUNT.ASSET_LINE
'A' AS CAPTION LABEL R1 OVER
'A' GET CHILDREN ALL AS CAPTION LABEL R2 OVER
'BAR' AS '-' OVER
'D' AS CAPTION LABEL R4 OVER
BAR AS '='
Result:
Opening $123,456
Net Transfers $123
Income $456
- - - - - - - - - --------
Closing $234,567
= = = = = = = = = ========
[CODE]
In other words the spacing get underlines.
I have tried to format the BAR to be white with no luck either.
Output is HTML only
Thanks,
Fernando
Prod WF 8.1.04, QA WF 8.2.03, Dev WF 8.2.03