Home Page link  

Top Selling Items Report

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here 

get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Top Selling Items Report gregfrgusa 02-23-2007
Posted by gregfrgusa on February 23, 2007, 4:12 pm
Please log in for more thread options
Hello,

I am trying to run a report where the report line is a the item level, with
qty sold, total sales, etc.

The Top items report is good, but you cannot filter by departement. (eg
Report the top selling items in Dept A).

The Detailed sales report is OK also, and the group by item description is
what I am looking for, but you cannot sort by the grouped level, so I cannot
get the best seller to the top of the report.

Thanks,
Greg
FRGUSA

Posted by Akber Alwani on February 24, 2007, 5:50 am
Please log in for more thread options
Hi, you can do the following to achive this:
1. Open the Sales -Top Items Report.grp in notepad. the file is located at
Program FilesMicrosoft Retail Management SystemStore OperationsReports
2. Update/Replace the Begin Reportsummary with following code:
TablesQueried = "FROM TransactionEntry WITH(NOLOCK) INNER JOIN
[Transaction] WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN

Item WITH (NOLOCK) On TransactionEntry.ItemID = Item.ID LEFT JOIN Category
WITH(NOLOCK) ON Item.CategoryID = Category.ID LEFT JOIN Department
WITH(NOLOCK) ON
Item.DepartmentID=Department.ID"
SelCriteria = ""
GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
3. Add the column underneath of Category.Name column with following code:
Begin Column
FieldName = "Department.Name"
DrillDownFieldName = "Department.Name"
DrillDownReportName = ""
Title = "Department"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1515
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Now Save the file and run the report. You are accomplished what you want.

Please rate and give your comments about me.

"gregfrgusa" wrote:

> Hello,
>
> I am trying to run a report where the report line is a the item level, with
> qty sold, total sales, etc.
>
> The Top items report is good, but you cannot filter by departement. (eg
> Report the top selling items in Dept A).
>
> The Detailed sales report is OK also, and the group by item description is
> what I am looking for, but you cannot sort by the grouped level, so I cannot
> get the best seller to the top of the report.
>
> Thanks,
> Greg
> FRGUSA

Posted by gregfrgusa on February 26, 2007, 1:23 pm
Please log in for more thread options
Thanks, Akber!

"Akber Alwani" wrote:

> Hi, you can do the following to achive this:
> 1. Open the Sales -Top Items Report.grp in notepad. the file is located at
> Program FilesMicrosoft Retail Management SystemStore OperationsReports
> 2. Update/Replace the Begin Reportsummary with following code:
> TablesQueried = "FROM TransactionEntry WITH(NOLOCK) INNER JOIN
> [Transaction] WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
> [Transaction].TransactionNumber LEFT JOIN
>
> Item WITH (NOLOCK) On TransactionEntry.ItemID = Item.ID LEFT JOIN Category
> WITH(NOLOCK) ON Item.CategoryID = Category.ID LEFT JOIN Department
> WITH(NOLOCK) ON
> Item.DepartmentID=Department.ID"
> SelCriteria = ""
> GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
> 3. Add the column underneath of Category.Name column with following code:
> Begin Column
> FieldName = "Department.Name"
> DrillDownFieldName = "Department.Name"
> DrillDownReportName = ""
> Title = "Department"
> VBDataType = vbString
> Formula = ""
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1515
> GroupMethod = groupmethodNone
> ColFormat = ""
> ColAlignment = flexAlignLeftCenter
> End Column
>
> Now Save the file and run the report. You are accomplished what you want.
>
> Please rate and give your comments about me.
>
> "gregfrgusa" wrote:
>
> > Hello,
> >
> > I am trying to run a report where the report line is a the item level, with
> > qty sold, total sales, etc.
> >
> > The Top items report is good, but you cannot filter by departement. (eg
> > Report the top selling items in Dept A).
> >
> > The Detailed sales report is OK also, and the group by item description is
> > what I am looking for, but you cannot sort by the grouped level, so I cannot
> > get the best seller to the top of the report.
> >
> > Thanks,
> > Greg
> > FRGUSA

Posted by Kevin on February 27, 2007, 3:37 pm
Please log in for more thread options
Akber,

I liked the idea of seeing the top items in specific departments so I tried
this and I am getting some errors. Here is what I have:
Thanks for your help.
Kevin

//--- Report Summary --- //

Begin ReportSummary
ReportType = reporttypeSales
ReportTitle = "Top Items Report"
PageOrientation = pageorientationPortrait
OutLineMode = True
Groups = 0
GroupDescription = ""
DisplayLogo = True
LogoFileName = "MyLogo.bmp"
ProcedureCall = ""
TablesQueried = <BEGIN>

FROM TransactionEntry WITH(NOLOCK)
INNER JOIN [Transaction] WITH(NOLOCK)
ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
AND TransactionEntry.StoreID = [Transaction].StoreID
LEFT JOIN Item WITH (NOLOCK)
ON TransactionEntry.ItemID = Item.ID
LEFT JOIN Category WITH(NOLOCK) ON Item.CategoryID=Category.ID
LEFT JOIN Department WITH(NOLOCK) ON
Item.DepartmentID=Department.ID"
<END>
SelCriteria = ""
GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
SortOrder = "Sales DESC"
End ReportSummary


//--- Title Rows ---//

Begin TitleRow
Text = "<Store Name>"
Font = "Arial"
FontBold = True
FontSize = 16
Color = "Blue"
End TitleRow

Begin TitleRow
Text = "<Report Title>"
Font = "Arial"
FontBold = True
FontSize = 12
Color = "Black"
End TitleRow

Begin TitleRow
Text = "Generated On <Report Date>"
Font = "Arial"
FontBold = True
FontSize = 10
Color = "Black"
End TitleRow


//--- Filters ---//

Begin Filter
FieldName = "[Transaction].Time"
FilterOp = reportfilteropBetween
FilterLoLim = "<YearStart>"
FilterHilim = "<Today>"
End Filter


//--- Columns ---//

Begin Column
FieldName = "ItemLookupCode"
DrillDownFieldName = "Item.ItemLookupCode"
DrillDownReportName = ""
Title = "Item Lookup Code"
VBDataType = vbString
Formula = "MAX(Item.ItemLookupCode)"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1800
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "ItemDescription"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Description"
VBDataType = vbString
Formula = "MAX(Item.Description)"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 2835
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.ID"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store ID"
VBDataType = vbLong
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 870
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.StoreCode"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store Code"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1095
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.Region"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store Region"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1335
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.City"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store City"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1020
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.State"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store State"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1155
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.Zip"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store Zip"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 945
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Store.Country"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Store Country"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1560
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "[Transaction].Time"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Date Sold"
VBDataType = vbDate
Formula = ""
ColHidden = True
ColNotDisplayable = True
FilterDisabled = False
ColWidth = 1035
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "QtySold"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Qty Sold"
VBDataType = vbDouble
Formula = "SUM(TransactionEntry.Quantity)"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1710
GroupMethod = groupmethodSum
ColFormat = "#.##"
End Column

Begin Column
FieldName = "Sales"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Sales"
VBDataType = vbCurrency
Formula = "SUM(TransactionEntry.Price * TransactionEntry.Quantity)"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1830
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Profit"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Profit"
VBDataType = vbCurrency
Formula = "SUM((TransactionEntry.Price - TransactionEntry.Cost) *
TransactionEntry.Quantity)"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1815
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Category.Name"
DrillDownFieldName = "Category.Name"
DrillDownReportName = ""
Title = "Category"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1515
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Department.Name"
DrillDownFieldName = "Department.Name"
DrillDownReportName = ""
Title = "Department"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1515
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = FlexAlignLeftCenter
End Column






> Thanks, Akber!
>
> "Akber Alwani" wrote:
>
>> Hi, you can do the following to achive this:
>> 1. Open the Sales -Top Items Report.grp in notepad. the file is located
>> at
>> Program FilesMicrosoft Retail Management SystemStore
>> OperationsReports
>> 2. Update/Replace the Begin Reportsummary with following code:
>> TablesQueried = "FROM TransactionEntry WITH(NOLOCK) INNER JOIN
>> [Transaction] WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
>> [Transaction].TransactionNumber LEFT JOIN
>>
>> Item WITH (NOLOCK) On TransactionEntry.ItemID = Item.ID LEFT JOIN
>> Category
>> WITH(NOLOCK) ON Item.CategoryID = Category.ID LEFT JOIN Department
>> WITH(NOLOCK) ON
>> Item.DepartmentID=Department.ID"
>> SelCriteria = ""
>> GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
>> 3. Add the column underneath of Category.Name column with following code:
>> Begin Column
>> FieldName = "Department.Name"
>> DrillDownFieldName = "Department.Name"
>> DrillDownReportName = ""
>> Title = "Department"
>> VBDataType = vbString
>> Formula = ""
>> ColHidden = False
>> ColNotDisplayable = False
>> FilterDisabled = False
>> ColWidth = 1515
>> GroupMethod = groupmethodNone
>> ColFormat = ""
>> ColAlignment = flexAlignLeftCenter
>> End Column
>>
>> Now Save the file and run the report. You are accomplished what you want.
>>
>> Please rate and give your comments about me.
>>
>> "gregfrgusa" wrote:
>>
>> > Hello,
>> >
>> > I am trying to run a report where the report line is a the item level,
>> > with
>> > qty sold, total sales, etc.
>> >
>> > The Top items report is good, but you cannot filter by departement.
>> > (eg
>> > Report the top selling items in Dept A).
>> >
>> > The Detailed sales report is OK also, and the group by item description
>> > is
>> > what I am looking for, but you cannot sort by the grouped level, so I
>> > cannot
>> > get the best seller to the top of the report.
>> >
>> > Thanks,
>> > Greg
>> > FRGUSA



Posted by Kevin on March 5, 2007, 2:55 pm
Please log in for more thread options

> Akber,
>
> I liked the idea of seeing the top items in specific departments so I
> tried this and I am getting some errors. Here is what I have:
> Thanks for your help.
> Kevin
>
> //--- Report Summary --- //
>
> Begin ReportSummary
> ReportType = reporttypeSales
> ReportTitle = "Top Items Report"
> PageOrientation = pageorientationPortrait
> OutLineMode = True
> Groups = 0
> GroupDescription = ""
> DisplayLogo = True
> LogoFileName = "MyLogo.bmp"
> ProcedureCall = ""
> TablesQueried = <BEGIN>
>
> FROM TransactionEntry WITH(NOLOCK)
> INNER JOIN [Transaction] WITH(NOLOCK)
> ON TransactionEntry.TransactionNumber =
> [Transaction].TransactionNumber
> AND TransactionEntry.StoreID = [Transaction].StoreID
> LEFT JOIN Item WITH (NOLOCK)
> ON TransactionEntry.ItemID = Item.ID
> LEFT JOIN Category WITH(NOLOCK) ON Item.CategoryID=Category.ID
> LEFT JOIN Department WITH(NOLOCK) ON
> Item.DepartmentID=Department.ID"
> <END>
> SelCriteria = ""
> GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
> SortOrder = "Sales DESC"
> End ReportSummary
>
>
> //--- Title Rows ---//
>
> Begin TitleRow
> Text = "<Store Name>"
> Font = "Arial"
> FontBold = True
> FontSize = 16
> Color = "Blue"
> End TitleRow
>
> Begin TitleRow
> Text = "<Report Title>"
> Font = "Arial"
> FontBold = True
> FontSize = 12
> Color = "Black"
> End TitleRow
>
> Begin TitleRow
> Text = "Generated On <Report Date>"
> Font = "Arial"
> FontBold = True
> FontSize = 10
> Color = "Black"
> End TitleRow
>
>
> //--- Filters ---//
>
> Begin Filter
> FieldName = "[Transaction].Time"
> FilterOp = reportfilteropBetween
> FilterLoLim = "<YearStart>"
> FilterHilim = "<Today>"
> End Filter
>
>
> //--- Columns ---//
>
> Begin Column
> FieldName = "ItemLookupCode"
> DrillDownFieldName = "Item.ItemLookupCode"
> DrillDownReportName = ""
> Title = "Item Lookup Code"
> VBDataType = vbString
> Formula = "MAX(Item.ItemLookupCode)"
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1800
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "ItemDescription"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Description"
> VBDataType = vbString
> Formula = "MAX(Item.Description)"
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 2835
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.ID"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store ID"
> VBDataType = vbLong
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 870
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.StoreCode"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store Code"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1095
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.Region"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store Region"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1335
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.City"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store City"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1020
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.State"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store State"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1155
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.Zip"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store Zip"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 945
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Store.Country"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Store Country"
> VBDataType = vbString
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1560
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "[Transaction].Time"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Date Sold"
> VBDataType = vbDate
> Formula = ""
> ColHidden = True
> ColNotDisplayable = True
> FilterDisabled = False
> ColWidth = 1035
> GroupMethod = groupmethodNone
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "QtySold"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Qty Sold"
> VBDataType = vbDouble
> Formula = "SUM(TransactionEntry.Quantity)"
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1710
> GroupMethod = groupmethodSum
> ColFormat = "#.##"
> End Column
>
> Begin Column
> FieldName = "Sales"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Sales"
> VBDataType = vbCurrency
> Formula = "SUM(TransactionEntry.Price * TransactionEntry.Quantity)"
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1830
> GroupMethod = groupmethodSum
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Profit"
> DrillDownFieldName = ""
> DrillDownReportName = ""
> Title = "Profit"
> VBDataType = vbCurrency
> Formula = "SUM((TransactionEntry.Price - TransactionEntry.Cost) *
> TransactionEntry.Quantity)"
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1815
> GroupMethod = groupmethodSum
> ColFormat = ""
> End Column
>
> Begin Column
> FieldName = "Category.Name"
> DrillDownFieldName = "Category.Name"
> DrillDownReportName = ""
> Title = "Category"
> VBDataType = vbString
> Formula = ""
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1515
> GroupMethod = groupmethodNone
> ColFormat = ""
> ColAlignment = flexAlignLeftCenter
> End Column
>
> Begin Column
> FieldName = "Department.Name"
> DrillDownFieldName = "Department.Name"
> DrillDownReportName = ""
> Title = "Department"
> VBDataType = vbString
> Formula = ""
> ColHidden = False
> ColNotDisplayable = False
> FilterDisabled = False
> ColWidth = 1515
> GroupMethod = groupmethodNone
> ColFormat = ""
> ColAlignment = FlexAlignLeftCenter
> End Column
>
>
>
>
>
>
>> Thanks, Akber!
>>
>> "Akber Alwani" wrote:
>>
>>> Hi, you can do the following to achive this:
>>> 1. Open the Sales -Top Items Report.grp in notepad. the file is located
>>> at
>>> Program FilesMicrosoft Retail Management SystemStore
>>> OperationsReports
>>> 2. Update/Replace the Begin Reportsummary with following code:
>>> TablesQueried = "FROM TransactionEntry WITH(NOLOCK) INNER JOIN
>>> [Transaction] WITH(NOLOCK) ON TransactionEntry.TransactionNumber =
>>> [Transaction].TransactionNumber LEFT JOIN
>>>
>>> Item WITH (NOLOCK) On TransactionEntry.ItemID = Item.ID LEFT JOIN
>>> Category
>>> WITH(NOLOCK) ON Item.CategoryID = Category.ID LEFT JOIN Department
>>> WITH(NOLOCK) ON
>>> Item.DepartmentID=Department.ID"
>>> SelCriteria = ""
>>> GroupBy = "Department.Name,Category.Name,Item.ItemLookupCode"
>>> 3. Add the column underneath of Category.Name column with following
>>> code:
>>> Begin Column
>>> FieldName = "Department.Name"
>>> DrillDownFieldName = "Department.Name"
>>> DrillDownReportName = ""
>>> Title = "Department"
>>> VBDataType = vbString
>>> Formula = ""
>>> ColHidden = False
>>> ColNotDisplayable = False
>>> FilterDisabled = False
>>> ColWidth = 1515
>>> GroupMethod = groupmethodNone
>>> ColFormat = ""
>>> ColAlignment = flexAlignLeftCenter
>>> End Column
>>>
>>> Now Save the file and run the report. You are accomplished what you
>>> want.
>>>
>>> Please rate and give your comments about me.
>>>
>>> "gregfrgusa" wrote:
>>>
>>> > Hello,
>>> >
>>> > I am trying to run a report where the report line is a the item level,
>>> > with
>>> > qty sold, total sales, etc.
>>> >
>>> > The Top items report is good, but you cannot filter by departement.
>>> > (eg
>>> > Report the top selling items in Dept A).
>>> >
>>> > The Detailed sales report is OK also, and the group by item
>>> > description is
>>> > what I am looking for, but you cannot sort by the grouped level, so I
>>> > cannot
>>> > get the best seller to the top of the report.
>>> >
>>> > Thanks,
>>> > Greg
>>> > FRGUSA
>
>



Similar ThreadsPosted
Top selling items report including non-selling items September 9, 2007, 8:15 pm
Top Selling Items report, by Departmentt January 3, 2007, 10:23 pm
Buying and selling used items at the POS February 11, 2008, 2:42 pm
Selling items that don't exist in the database yet. December 31, 2006, 7:21 am
Not-Selling Item Report November 30, 2005, 11:50 am
selling August 21, 2006, 11:10 am
Selling on Account December 20, 2006, 3:51 am
SELLING KEG BEER USING RMS? April 20, 2008, 12:03 pm
Selling from Other store July 23, 2008, 9:46 am
Selling Serialized Inventory December 2, 2005, 1:19 pm

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap