PC Review


Reply
Thread Tools Rate Thread

How to design a table or table to take an x, y control columns andall the possible array values

 
 
Blinds Nottingham
Guest
Posts: n/a
 
      31st Jan 2010
Hi

Looking for some guidance on how to design.. then manipulate a price
grid structure in a database

the first part of the project will to design a data table or tables
which i can see ideas on how to do it but not too sure the best way

Each product that is supplied has its only price table and its own
sizes always variants for each product to product

Ie Roller Blinds has a max width of 3 meters starting at 400mm then at
an increment of 200mm 400,600,800,1000 ... etc becomes the grid column
headings then the drop row heading may be 1800,2200,2600
where a vertical blind may have a max width of 5m starting at 600m and
increments of 250 thus 850,1100,1350 etc and the drop might be
400,800,1200

where i am trying to describe the constant increment in x and y value
no one product may ever be the same

then for ever width x drop there is a price making a data / look up
table / grid

i presume i could make a table which said

productid , product name, width, drop, price

is this going to be the best way... in consideration the next step is
to look how i can display a input form which can step through each of
the x and y to enter a price which make me think that the price may
need to be in a different table and linked to the width and drop .. or
is that overkill

comments welcome on concepts and ideas... also if some one know enough
about a way of creating an input grid so they user can enter width and
drop increments then show a grid with heading and column and then edit
directly the price in i would be gratefull the only grid i have seem
see to be table grids rather than an 2d array type of grid.

thanks

Nick

 
Reply With Quote
 
 
 
 
Blinds Nottingham
Guest
Posts: n/a
 
      31st Jan 2010
Hi
thanks for replying so quickly

I can show you what i mean in an excel format but looking at trying to
convert this to a database so i can do lookup etc on prices dependant
on product and width and drop sizes

there is the idea of 3 blinds, 2 the same type but from different
suppliers, who have different size for the prices and increments so to
show that nothing is standard

then an example of a roller blind .. prices are fictitious but
eventually want to enter a cost price and then have access or vb
dynamically create the end results.. i am a noobie really to this as a
developer, but have sorted many database and systems.. done alot of
vba in excel and some in access

hope this makes things a bit clearer

http://www.bradrail.co.uk/uploads/pr...istexample.xls
and thanks again
 
Reply With Quote
 
Blinds Nottingham
Guest
Posts: n/a
 
      31st Jan 2010
just read your coffee induce thought just before i posted..

the x and y are related to the product.. and the price is related to
the x and y or a selected product

hence the thought of

productgridid,productid,productx,producty

this would have to have the product reference and the productx and
producty entered manually.. didnt think for the 20 enteries the (x *
y) worth splitting again in to productgridxid,productid,productx and
productgridyid,productid,producty
then as u said dont join them select them out of each table then get
the corrosponding prices from a third table, and then populate an
array i presume for manipulation

pricegridid,productid,productidxid,productyid,price

so combining the productgird and the x and y and the pricegrid price
for each of the x and y then list them

i am glad its making you scratch your head

generally rule is ... that once a product is set up, that the sizes
wont change only the prices for all x and y's and since the price and
constant increment it becomes a bum ache...

looking forward to your idea etc
 
Reply With Quote
 
Steve
Guest
Posts: n/a
 
      31st Jan 2010
Let's start with the following for discussion. Provide your comments and we
can modify as needed.

TblSupplier
SipplierID
<supplier fields>

TblProduct
ProductID
SupplierID
ProductName
MaxWidth
StartWidth
WidthIncrement
MaxDrop
StartDrop
DropIncrement

TblProductSizePrice
ProductSizePriceID
ProductID
ProductWidth
ProductDrop
Price

For data entry to TblProductSizePrice, you would use MaxWidth, StartWidth
and WidthIncrement to get the
ProductWidth entries You would use MaxDrop, StartDropand DropIncrement to
get the ProductDrop entries.

For your invoices you would use ProductSizePriceID to get the item price.

Steve
(E-Mail Removed)




"Blinds Nottingham" <(E-Mail Removed)> wrote in
message
news:d6e3bc07-9631-4c11-b9cd-(E-Mail Removed)...
> Hi
>
> Looking for some guidance on how to design.. then manipulate a price
> grid structure in a database
>
> the first part of the project will to design a data table or tables
> which i can see ideas on how to do it but not too sure the best way
>
> Each product that is supplied has its only price table and its own
> sizes always variants for each product to product
>
> Ie Roller Blinds has a max width of 3 meters starting at 400mm then at
> an increment of 200mm 400,600,800,1000 ... etc becomes the grid column
> headings then the drop row heading may be 1800,2200,2600
> where a vertical blind may have a max width of 5m starting at 600m and
> increments of 250 thus 850,1100,1350 etc and the drop might be
> 400,800,1200
>
> where i am trying to describe the constant increment in x and y value
> no one product may ever be the same
>
> then for ever width x drop there is a price making a data / look up
> table / grid
>
> i presume i could make a table which said
>
> productid , product name, width, drop, price
>
> is this going to be the best way... in consideration the next step is
> to look how i can display a input form which can step through each of
> the x and y to enter a price which make me think that the price may
> need to be in a different table and linked to the width and drop .. or
> is that overkill
>
> comments welcome on concepts and ideas... also if some one know enough
> about a way of creating an input grid so they user can enter width and
> drop increments then show a grid with heading and column and then edit
> directly the price in i would be gratefull the only grid i have seem
> see to be table grids rather than an 2d array type of grid.
>
> thanks
>
> Nick
>





 
Reply With Quote
 
Piet Linden
Guest
Posts: n/a
 
      31st Jan 2010
On Jan 31, 10:35*am, Blinds Nottingham
<bradrail.blinds.awni...@googlemail.com> wrote:
> just read your coffee induce thought just before i posted..
>
> the x and y are related to the product.. and the price is related to
> the x and y or a selected product
>
> hence the thought of
>
> productgridid,productid,productx,producty
>
> this would have to have the product reference and the productx and
> producty entered manually.. didnt think for the 20 enteries the (x *
> y) worth splitting again in to productgridxid,productid,productx and
> productgridyid,productid,producty
> then as u said dont join them select them out of each table then get
> the corrosponding prices from a third table, and then populate an
> array i presume for manipulation
>
> pricegridid,productid,productidxid,productyid,price
>
> so combining the productgird and the x and y and the pricegrid price
> for each of the x and y then list them
>
> i am glad its making you scratch your head
>
> generally rule is ... that once a product is set up, that the sizes
> wont change only the prices for all x and y's and since the price and
> constant increment it becomes a bum ache...
>
> looking forward to your idea etc


Sounds like you might want to create a deliberate cartesian product
and turn it into an append query.

Say you have tables that contain all the values for X and Y. You
could create a cross-product of the two tables and turn it into an
append query, which would do most of the grunt work for you. I'll
make up a simple example... Say I have two models of car, "Model A"
and "Model T", and they can come in several colors: Red, Orange,
Yellow, etc.

If I create a table of Colors
CREATE TABLE Colors(
ColorName TEXT(20) PRIMARY KEY
);

and then I create a table of Models
CREATE TABLE Car(
Model TEXT(20) PRIMARY KEY
)

If I create the following query, I will get all possible combinations
of (Car.Model, Colors.ColorName)

SELECT Car.Model, Colors.ColorName
FROM Car, Colors
ORDER BY Car.Model, Colors.ColorName;

Note that there is NO join between the two tables. That's on
purpose. If you take that and turn it into a make-table query, you'll
get a table of all the possible values...

Hope that gets you started.
 
Reply With Quote
 
Blinds Nottingham
Guest
Posts: n/a
 
      2nd Feb 2010
thank you to all who have give me a really good start point on this ..
will have to sit down now and have a go at testing them out..

does any one know of a plugin which will allow me to display the data
as a grid and enter the price rather having to keep steping through
each record..

i know i probably need to ask in the forms area ..

once again thanks for all the input it is greatly appreciated
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding Records to a Table using an Array and Control Values =?Utf-8?B?S2V2aW4gUm9kcmlndWV6?= Microsoft Access Forms 1 19th May 2004 06:36 PM
How to access columns in design-time table? Richard Dixson Microsoft Dot NET Framework Forms 1 17th May 2004 04:09 PM
Array/Table: Looking up values? Solomani Microsoft Excel Misc 2 31st Dec 2003 01:19 AM
Array to Table with Variable Columns a Microsoft VB .NET 3 11th Nov 2003 06:14 AM
Using Table control in a custom composite control. Control does not render properly in design time. jb_in_marietta@yahoo.com Microsoft ASP .NET 0 1st Jul 2003 10:26 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:44 PM.