I am using Crystal 8.5
I need to report on contract time usage for a 12 month period, beginning at whatever month the contract start in
Say the contract start in May-2005 and runs through April-2009
I would need to report from May-2005 through Apr 2006, then from May 2006 through April 2007, etc
The output would look like
May-2005 10
Jun-2005 12
etc thru
Apr-2006 14
What is the easiest way to create the array for the month.
By the way, the report is created in English, but I need to output in another language (German, French and Dutch)
So the month need to be specify the month-name explicitly. Unless there is a function that returns the name of a month by specifying the language...
I also have formulas that collect data for each month, such as for January:
if month(date({Care.Date})) = 1 and year(date([Care.date}) = 2006 then {Time.Hours}
So I need to make the "1" and the "2006" a variable depending on the month to start, etc,etc
Hope this makes sense
I need to report on contract time usage for a 12 month period, beginning at whatever month the contract start in
Say the contract start in May-2005 and runs through April-2009
I would need to report from May-2005 through Apr 2006, then from May 2006 through April 2007, etc
The output would look like
May-2005 10
Jun-2005 12
etc thru
Apr-2006 14
What is the easiest way to create the array for the month.
By the way, the report is created in English, but I need to output in another language (German, French and Dutch)
So the month need to be specify the month-name explicitly. Unless there is a function that returns the name of a month by specifying the language...
I also have formulas that collect data for each month, such as for January:
if month(date({Care.Date})) = 1 and year(date([Care.date}) = 2006 then {Time.Hours}
So I need to make the "1" and the "2006" a variable depending on the month to start, etc,etc
Hope this makes sense