Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blank Line

Status
Not open for further replies.

Senseial

Programmer
Feb 11, 2004
40
CA
Hello All

I have a view that feeds my report
This is waht it look like

F1 F2
-------------
AAAAA 1234
1236
BBBBB 3444
1212

I compress on F1 if it is dup so it look like that.

My problem now is how to have a space when F1 changes.

This is a view.

Thanks
 
Do you have any groups in your report?

You could add another section that prints at the end of the
F1 section, that is conditionally suppressed based on F1.

whileprintingrecords;
if F1 <> previous F1 then true
 
No I don't have any groups. Just one view.
I will try this. Still have a problem.
Thanks
 
Ok here is just a small ex.

SELECT sm.SKU,
oh.order_number,
FROM OUTBOUND_HEADER oh,
SKU_MASTER sm,
WHERE sm.sku_master_id = oh.sku_master_id

I can't group by since they want to see each line just not the SKU (dups) since I am doing few calculations at the end. They only want to see blank line after SKU.
THanks
 
You could group on {table.F1}, but suppress the group header. The group footer would provide the space you're looking for. You can leave {table.F1} in the detail section as you have it now. This shouldn't affect any calculations.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top