Topic Options
#18758 - 09/18/09 02:48 PM GridView Report
Barb9 Offline
Adagio Prodigy

Registered: 03/06/06
Posts: 273
Loc: Langley
I have had a request from one of our branches to obtain the following information. Can you please advise which GridView report would be best able to extract this for me?

Customer #
Customer Name
Address 1
Address 2
Address 3
Address 4
Postal Code
Telephone
Contact
Sales each customer for Fiscal Year Ending 2008
Sales each customer for Fiscal Year Ending 2009

I was able to extract a report showing each customer's sales, but it ended up extremely cumbersome. It showed each document (invoice, credit note, cash application etc) as a line item, making the end report way too large to print. All we really need is the above info, for the two year periods.

Thanks for any help you are able to provide.

Top
#18760 - 09/18/09 02:59 PM Re: GridView Report [Re: Barb9]
Softrak Support Offline

Adagio Action Team

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

Take the report you have created, then 'Set Sort Order' by Customer #. Then click the Summarize button on the toolbar (the sigma Greek character) to summarize all the records, so now you have one row for each customer, with the Sales sub-totalled by customer.

In order to get two columns that show yearly summaries, you need to create 2 calculated columns that test the date of the transaction and if it is within the desired date range, then output the amount, otherwise output 0.

EG to list all sales for 2009:
IF (YEARL({Date}) = 2009 , {Amount} , 0 )

If your fiscal year does not end on Dec 31, then you can't use the simple year function, but define the start and end dates:

IF (
AND( {Date}>=Date(2008,07,01) , {Date}<=Date(2009,06,30) )
,
{Amount}
,
0
)
_________________________
Regards,
Softrak Tech Support

Top


Moderator:  Christa_Meissner 
Who's Online
0 registered (), 78 Guests and 0 Spiders online.
Key: Admin, Global Mod, Mod
Forum Stats
1865 Members
5 Forums
14448 Topics
70593 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