|
Posted by Jack T on December 6, 2005, 12:17 pm
Please log in for more thread options
Anyone know how I can make a sales report that contains a sales reps sales
within a given time frame, including item price, with tax if any, and tender
type (basically the entire sale rung up). I am trying to run a report that
shows how much we are putting on types of credit cards, Visa, MasterCard,
Discover, cash, etc. Would like to know the SQL statements that are needed
to do so.
|
|
Posted by Jeff on December 6, 2005, 4:15 pm
Please log in for more thread options
Jack,
Are you asking for 2 reports or a single one?
The second, how much for each tender types, you have already have, if you
separate out your credit card tenders. A tender for MC, a separate for
VISA, etc.
SO Manager | Reports | Misc | Tender Summary | then collapse grouped rows,
the 8th icon on top or press Ctrl+O.
--
*
Anyone know how I can make a sales report that contains a sales reps sales
within a given time frame, including item price, with tax if any, and tender
type (basically the entire sale rung up). I am trying to run a report that
shows how much we are putting on types of credit cards, Visa, MasterCard,
Discover, cash, etc. Would like to know the SQL statements that are needed
to do so.
|
|
Posted by Jack T on December 7, 2005, 9:38 am
Please log in for more thread options Yea, I was trying to tie the salesperson into a report that shows customer,
salesperson, total sale including tax and tender type.
"Jeff" wrote:
> Jack,
>
> Are you asking for 2 reports or a single one?
>
> The second, how much for each tender types, you have already have, if you
> separate out your credit card tenders. A tender for MC, a separate for
> VISA, etc.
>
> SO Manager | Reports | Misc | Tender Summary | then collapse grouped rows,
> the 8th icon on top or press Ctrl+O.
>
> --
> *
> Anyone know how I can make a sales report that contains a sales reps sales
> within a given time frame, including item price, with tax if any, and tender
> type (basically the entire sale rung up). I am trying to run a report that
> shows how much we are putting on types of credit cards, Visa, MasterCard,
> Discover, cash, etc. Would like to know the SQL statements that are needed
> to do so.
>
>
>
|
|
Posted by Rob on December 7, 2005, 5:26 pm
Please log in for more thread options Jack to add Sales Person and Tender to a report you need to add these tables:
LEFT JOIN SalesRep WITH(NOLOCK) ON TransactionEntry.SalesRepID = SalesRep.ID
LEFT JOIN TenderEntry WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
TenderEntry.TransactionNumber
LEFT JOIN Tender WITH(NOLOCK) ON TenderEntry.TenderID = Tender.ID
Then add the Tender.Description and SalesRep.Name columns to the report.
Rob
"Jack T" wrote:
> Yea, I was trying to tie the salesperson into a report that shows customer,
> salesperson, total sale including tax and tender type.
>
> "Jeff" wrote:
>
> > Jack,
> >
> > Are you asking for 2 reports or a single one?
> >
> > The second, how much for each tender types, you have already have, if you
> > separate out your credit card tenders. A tender for MC, a separate for
> > VISA, etc.
> >
> > SO Manager | Reports | Misc | Tender Summary | then collapse grouped rows,
> > the 8th icon on top or press Ctrl+O.
> >
> > --
> > *
> > Anyone know how I can make a sales report that contains a sales reps sales
> > within a given time frame, including item price, with tax if any, and tender
> > type (basically the entire sale rung up). I am trying to run a report that
> > shows how much we are putting on types of credit cards, Visa, MasterCard,
> > Discover, cash, etc. Would like to know the SQL statements that are needed
> > to do so.
> >
> >
> >
|
|
Posted by Jack T on December 7, 2005, 6:11 pm
Please log in for more thread options Rob,
I am trying to add to the "Custom-Tender entry by date" report and keep
getting Invalid proceedure call or Argument. I am wondering if I am trying
to place the statement in the wrong place?
"Rob" wrote:
> Jack to add Sales Person and Tender to a report you need to add these tables:
> LEFT JOIN SalesRep WITH(NOLOCK) ON TransactionEntry.SalesRepID = SalesRep.ID
> LEFT JOIN TenderEntry WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
> TenderEntry.TransactionNumber
> LEFT JOIN Tender WITH(NOLOCK) ON TenderEntry.TenderID = Tender.ID
>
> Then add the Tender.Description and SalesRep.Name columns to the report.
>
> Rob
>
>
> "Jack T" wrote:
>
> > Yea, I was trying to tie the salesperson into a report that shows customer,
> > salesperson, total sale including tax and tender type.
> >
> > "Jeff" wrote:
> >
> > > Jack,
> > >
> > > Are you asking for 2 reports or a single one?
> > >
> > > The second, how much for each tender types, you have already have, if you
> > > separate out your credit card tenders. A tender for MC, a separate for
> > > VISA, etc.
> > >
> > > SO Manager | Reports | Misc | Tender Summary | then collapse grouped rows,
> > > the 8th icon on top or press Ctrl+O.
> > >
> > > --
> > > *
> > > Anyone know how I can make a sales report that contains a sales reps sales
> > > within a given time frame, including item price, with tax if any, and
tender
> > > type (basically the entire sale rung up). I am trying to run a report that
> > > shows how much we are putting on types of credit cards, Visa, MasterCard,
> > > Discover, cash, etc. Would like to know the SQL statements that are needed
> > > to do so.
> > >
> > >
> > >
|
| Similar Threads | Posted | | Nee Help Customizing a 12 month sales report | February 19, 2009, 1:57 pm |
| Hourly Sales Totals including Taxes | February 14, 2007, 8:44 am |
| Dairy activity report including layaways | November 5, 2007, 5:07 am |
| Customizing a Z report | April 12, 2006, 12:46 pm |
| Customizing the Z Report | January 8, 2008, 8:17 am |
| Report Customizing ... Missed the CHAT | April 6, 2007, 9:36 am |
| Need help customizing a Layaway report with additional details | December 12, 2005, 2:36 pm |
| Item Value List vs Item Movement History Report (including cost) | July 1, 2009, 1:55 pm |
| Discrepancies between Detailed Sales Report and Summary Sales Repo | August 30, 2006, 12:37 pm |
| Error Total sales report hour sales | August 14, 2006, 3:19 pm |
|
|