Topic Options
#20659 - 01/25/10 08:42 AM Report Needed for Comparison
Barb9 Offline
Adagio Prodigy

Registered: 03/06/06
Posts: 273
Loc: Langley
I would like to be able to compare our customer's sales LY and YTD so far. Perhaps even the year before...we are running GridView, AR, Sales Analysis. What is the best way to go about this? Crystal Reports is also an option.

Thanks very much.

Top
#20660 - 01/25/10 09:04 AM Re: Report Needed for Comparison [Re: Barb9]
Softrak Support Offline

Adagio Action Team

Registered: 03/09/99
Posts: 11532
Loc: Vancouver, BC Canada
Hi Barb,

Using GridView on your Sales Analysis transactions database is probably the best way to go.

Create calculated columns to list the LY, YTD or other sales amount date range. Ensure that you choose to include a sum for each calculated column, and set a sort order by the customer code. When you summarize the view, you will get one row for each customer and the calculated columns will display totals for LY, YTD etc for each customer.

To create a YTD calculated column, use syntax something like:
IF(
AND(
{Date} >= BEGINYEAR( )
,
{Date} <= TODAY( )
)
,
{Amt}
,
0
)

To create a full Last Year calculated column, use syntax something like:
IF ( YEAR( {Date} ) = Year( TODAY( ) ) -1
,{Amt}
,0)


Syntax for two years ago is similar:
IF ( YEAR( {Date} ) = Year( TODAY( ) ) -2
,{Amt}
,0)


It gets a little more complicated if you want Last Year to Date as opposed to the full year:
IF(
AND(
{Date} >= EDATE(BEGINYEAR(),-12)
,
{Date} <= EDATE(TODAY(),-12)
)
,{Amt}
,0)

where the EDATE function gives you the date a certain number of months in the future or in the past. -12 means the same date 12 months in the past.
_________________________
Regards,
Softrak Tech Support

Top
#20662 - 01/25/10 09:28 AM Re: Report Needed for Comparison [Re: Softrak Support]
Michael Mulrooney Offline
Adagio Virtuoso

Registered: 02/07/02
Posts: 839
Loc: Vancouver, BC
If you are interested in Invoice Totals for YTD and LY they are carried in the Customer Master.

Using Smart Finder from the Customer Grid and Excel Direct you can get a quick approximation.

Choose only those Customers where Inv Total - LY or Inv Total - YTD are Not equal to 0

If you want a 3 year comparison you will need to use GridView and Sales Analysis

Top
#20663 - 01/25/10 11:38 AM Re: Report Needed for Comparison [Re: Michael Mulrooney]
Barb9 Offline
Adagio Prodigy

Registered: 03/06/06
Posts: 273
Loc: Langley
Thank you very much, we will try this!

Top


Moderator:  Christa_Meissner 
Who's Online
0 registered (), 61 Guests and 2 Spiders online.
Key: Admin, Global Mod, Mod
Forum Stats
1865 Members
5 Forums
14459 Topics
70635 Posts

Max Online: 432 @ 01/20/25 10:17 PM
April
Su M Tu W Th F Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30