#16164 - 02/27/09 02:26 PM
Gridview
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
Using Table *IC Item Loc w IC Item I can produce a report that shows Item#, I/C Item Description, Qty on Hand Plus, Picking Seq, Loc. Problem is with our 4 locations each item takes 4 lines. What I want is a Gridview with location 1, 2, 3 & 4 columns. So it will show item 1 has qty 2 at loc 1, qty 3 at location 2, qty 5 at location 3 and qty 2 at location 4. Is there a table or way to do this?
Thanks,
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16165 - 02/27/09 02:30 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
I can use a calculated column if someone can help me figure out the right function.
I want it do this:
{Qty on Hand Plus} for {Loc} = "WA"
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16167 - 02/27/09 03:05 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
I figured out that I can export physical inventory worksheets to get the result I'm looking for, but still interested in knowing how to produce reports with location columns in Gridview.
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16171 - 02/27/09 05:10 PM
Re: Gridview
[Re: doswalt]
|
Adagio Master
Registered: 03/16/99
Posts: 10504
Loc: Canada
|
Hi Susan, Use the {Composite Table V8.0C} to select the composite view *IC Item Loc with IC Item. This provides a single record for each item/location pair. Use and IF statement to move the QOH into a separate column for each of your 4 locations
=IF({Loc}="ABC", {QOH}, 0)
Then summarize to item.
_________________________
Andrew Bates
|
Top
|
|
|
|
#16173 - 02/27/09 09:45 PM
Re: Gridview
[Re: Retired_Guy]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
Hi Andrew,
Using your method I can create a column for each of our warehouse quantities, however, each item is still listed 4 times using 4 rows. Is there a way to have each item use only 1 row and show the quantity at each location in the 4 columns?
Current result: Item# Whse#1 Whse#2 Whse#3 Whse#4 AA123 5 0 0 0 AA123 0 7 0 0 AA123 0 0 2 0 AA123 0 0 0 8
Desired result: Item# Whse#1 Whse#2 Whse#3 Whse#4 AA123 5 7 2 8
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16174 - 02/27/09 09:50 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
Ahh the forum removed the spaces I entered that showed the current and desired results. Hopefully you can figure it out. Also, the forum no longer allows me to edit any of my posts. It says, "This post can no longer be edited because the maximum edit time has expired", even when it's only 5 or 10 seconds after I posted.
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16176 - 02/27/09 10:32 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Wizard
Registered: 06/15/04
Posts: 3641
Loc: Toronto ON, Canada
|
Hello Susan:
To get one Item per line, you need to Summarize the View.
In short: -Set a Sort Order by Item code -Click on the Summarize button (the Epsilon character)
And you're right. There's no margin for error on a Post anymore!
|
Top
|
|
|
|
#16177 - 02/27/09 10:34 PM
Re: Gridview
[Re: doswalt]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
One way to get this information is to go into Adagio Inventory and printing Physical Inventory Worksheets selecting "All items from Inventory list" for all locations including qty on hand and creating an export file. Then I can open each location's worksheet in excel and copy the quantity from each and combine them to one spreadsheet. This is a bit tiring but it works.
I was hoping to use Gridview more for inventory control but this location issue seems to keep coming up and prevents me from accomplishing the output I need.
One workaround that helps somewhat is for example a Gridview that have that shows us items that we have orders for but no stock in our warehouse. Before we order it, maybe we should see if one of our other branches is sitting on the stock we need? So I created another gridview called locations and linked it so when you double click on any item you need to order you can quickly see if there's stock at another warehouse.
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16179 - 02/27/09 10:50 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
Hi Bruce,
I just tried summarize. I never knew it existed before. Only problem is that for whatever reason the location columns all become blank and the only way you can see the quantities again in those columns is to expand the items again.
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16180 - 02/27/09 11:00 PM
Re: Gridview
[Re: SusanTennier]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
Hi David,
Exactly, the Gridview linking is great as an inquiry tool but not so good when you want to create a report. At least I'm learning what I can and can't do. That's half the battle. Now I'm moving on to POA maintain specifications.. oh joy!
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
#16183 - 02/28/09 07:53 AM
Re: Gridview
[Re: SusanTennier]
|
Adagio Master
Registered: 03/16/99
Posts: 10504
Loc: Canada
|
Put totals on the location columns so that GridView knows what to do when you summarize.
_________________________
Andrew Bates
|
Top
|
|
|
|
#16186 - 02/28/09 09:52 AM
Re: Gridview
[Re: Retired_Guy]
|
Adagio Maestro
Registered: 02/22/08
Posts: 1247
Loc: Ontario, Canada
|
It works!!!
_________________________
Susan Tennier TDL Canada Trenton, Ontario
|
Top
|
|
|
|
|
1 registered (Softrak Support),
82
Guests and
0
Spiders online. |
Key:
Admin,
Global Mod,
Mod
|
|
1873 Members
5 Forums
14529 Topics
70939 Posts
Max Online: 432 @ 01/20/25 10:17 PM
|
|
|
|
|
|
|
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
|
31
|
|
|
|
|
|
|
|
|