I have a forumla:
stringVar month_name = monthname(month(minimum({?date})));
numberVar year_name = year(minimum({?date}));
How can I print both those variables off in one field so it ends up like this:
'November, 2003' or 'May, 2003' etc etc
By making them seperate fields I have to leave a big gap between the month and year because sometimes you have small months (May, June...), sometimes you have big months (November, December...). This isn't very nice looking for a report... Any help is much appreciated!
Toxodont
stringVar month_name = monthname(month(minimum({?date})));
numberVar year_name = year(minimum({?date}));
How can I print both those variables off in one field so it ends up like this:
'November, 2003' or 'May, 2003' etc etc
By making them seperate fields I have to leave a big gap between the month and year because sometimes you have small months (May, June...), sometimes you have big months (November, December...). This isn't very nice looking for a report... Any help is much appreciated!

Toxodont