Crystal Reports Dynamically Grouping by Date -


I'm relatively new to crystal reports and it seems that it should be easy, but I did not understand it Outside all googling, I am working on a report in Crystal Reports XI, which will show total hours by auxiliary staff for a date range based on the input of the user and will show between sub-yoga, week, month or both. My report is currently arranged as follows:

  Group 1 Header - Support Staff Members Group 2 Header - Printed Monthly Group Tickets with Header 3 Date Off - Section Printed Weekly Group 4 Header Ticket Closed Date - Ticket Category Group 4 Footer - Time Group entered each category for the week 3 Footer - The logging session for all categories for the week Group 2 Footer - Please log in to all categories for the same group 1 footer - Yoga for always logged  

My original idea was to suppress headers and footers for only 2 and 3 groups , When they were not necessary, but if I myself do this manually, that it still prints records, weeks and months until the parameter shows those formulas, is there a way of not being at all? Or if it is not an option, how would I use the parameter to determine whether the group records weekly or monthly?

the best option is a string parameter 'option with weekly and monthly values Will make

Now create a formula grouping.

  if? Parameter = 'weekly' then // if your weekly code otherwise? Parameter = 'monthly' then // your monthly code  

Now use this formula by using this formula

Now when the user chooses the option, then your group will be dynamic Will change in the form.

Hope this helps


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -