Oct 14, 2009 #1 willz99ta IS-IT--Management Sep 15, 2004 132 US Hi, Is there any way to have my Crystal Reports graph show days of the week instead of just the date for my X-Axis? Thanks for your help, Will
Hi, Is there any way to have my Crystal Reports graph show days of the week instead of just the date for my X-Axis? Thanks for your help, Will
Oct 14, 2009 1 #2 lbass Technical User Feb 9, 2002 32,816 US Try the following as your "on change of" field: {table.date} & " " & weekdayname(dayofweek({table.date})) -LB Upvote 0 Downvote
Try the following as your "on change of" field: {table.date} & " " & weekdayname(dayofweek({table.date})) -LB
Oct 15, 2009 Thread starter #3 willz99ta IS-IT--Management Sep 15, 2004 132 US The only problem I run into is that the formula field won't group itself "every day" like the date field will. Upvote 0 Downvote
The only problem I run into is that the formula field won't group itself "every day" like the date field will.
Oct 15, 2009 #4 lbass Technical User Feb 9, 2002 32,816 US Sure it will. If it is a datetime, wrap it in date(): date({table.date}) & " " & weekdayname(dayofweek({table.date})) If you are still having trouble, please explain the results you are getting. -LB Upvote 0 Downvote
Sure it will. If it is a datetime, wrap it in date(): date({table.date}) & " " & weekdayname(dayofweek({table.date})) If you are still having trouble, please explain the results you are getting. -LB
Oct 15, 2009 Thread starter #5 willz99ta IS-IT--Management Sep 15, 2004 132 US Looks like LBass wins again! That fixed it and grouped it. Thanks, Will Upvote 0 Downvote