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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get a line on Date Change on a report

Status
Not open for further replies.

richmond88

IS-IT--Management
Sep 25, 2003
32
GB
I have a Calendar Type Report with the date down the left hand side, I hide duplicate dates. When I have a date change I would like to have a line going across the report.

How do I do this please.

Thanks

Chris
 
draw the line, and set it's visible property to false...

then somewhere in your code put:

lineName.visible = true

Crowley - as in like a Crow
 
Presumably I would put that in the Detail Secvtion.

But how do I no when the date changes.
 
Abdullah - I dont think that will work.

I have a header already that splits the data into months so that each monthe appears on a seperate page.

 
Hi,
OK Create another report...
When wizard ask you "Do you want to add any Grouping levels?"
Select your date field twice..
Click "Grouping options" button..
Select Grouping intervals First one to month and second one to Day. Rest as usual......
Now you have two grouping levels of the date field.
On the design view of the report Click the Grouping & Sorting command (View >Grouping & sorting). You can see 4 times the date field has been grouped. Click on the second one and set Group Footer = yes

You can draw the line in that footer.

Hope this helps


Zameer Abdulla

 
Thanks Abdullah - I eventually did it another way usine the Detail_Print and Detail_Format.

On the Detail_Print I set the StoredEventDate to EventDate.

Then on the Detail_Format I Checked StoredEventDate against EventDate and if it was the same make the Line Invisible If Different make it Visible.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top