PC Review


Reply
Thread Tools Rate Thread

Calculations Forms and Reports

 
 
=?Utf-8?B?a3NmaXJld29ya3NnYWw=?=
Guest
Posts: n/a
 
      30th May 2007
I have a form that I am calculating the price of an item based on its
packaging. For example if the Packaging = Each then I need the individual
price, if the packaging is pack I need the pack price etc.

My delmia is how do I take that calculated price and mutiply it but the
quanity to get the value of the the item. And how do I get both the item
price and the total value to show up in my report. I tried to do this in a
query, but the query would not take the long if else statement required to
produce the Item Price based on the packaging. Any suggestions.
--
Lynette
 
Reply With Quote
 
 
 
 
=?Utf-8?B?RHVhbmUgSG9va29t?=
Guest
Posts: n/a
 
      30th May 2007
Someone might be able to help if we had information about your table
structures and data. Without some specifics, no one can be of much assistance.

--
Duane Hookom
Microsoft Access MVP


"ksfireworksgal" wrote:

> I have a form that I am calculating the price of an item based on its
> packaging. For example if the Packaging = Each then I need the individual
> price, if the packaging is pack I need the pack price etc.
>
> My delmia is how do I take that calculated price and mutiply it but the
> quanity to get the value of the the item. And how do I get both the item
> price and the total value to show up in my report. I tried to do this in a
> query, but the query would not take the long if else statement required to
> produce the Item Price based on the packaging. Any suggestions.
> --
> Lynette

 
Reply With Quote
 
=?Utf-8?B?a3NmaXJld29ya3NnYWw=?=
Guest
Posts: n/a
 
      30th May 2007
The table consits of the following fields

Tent #
Location
Box Number
Item Description
Item Quanity
Item Packaging
Each Price
Pack Price
Box Price

I created a calculation field called getitemprice here is my code

Private Function getitemprice() As Currency
If PACKINGTYPE = "EACH" Then
getitemprice = WIEACHPRICE
ElseIf PACKINGTYPE = "PACK" Then
getitemprice = WIPACKPRICE
ElseIf PACKINGTYPE = "BOX" Then
getitemprice = WIBOXPRICE
Else
End If
End Function

The price shows up in the calculated field on the form. My question is how
do I get this calculation in my table. Yes, I do need it in my table. The
price will not change once it has been calculated. I then need to use this
calculated answer to figure my total price for the item (boss wants both the
individual item price and the total price based on the quanity). Exp
Sparkler #8 161 Each = .50 each X 161 = $80.50.
--
Lynette


"Duane Hookom" wrote:

> Someone might be able to help if we had information about your table
> structures and data. Without some specifics, no one can be of much assistance.
>
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "ksfireworksgal" wrote:
>
> > I have a form that I am calculating the price of an item based on its
> > packaging. For example if the Packaging = Each then I need the individual
> > price, if the packaging is pack I need the pack price etc.
> >
> > My delmia is how do I take that calculated price and mutiply it but the
> > quanity to get the value of the the item. And how do I get both the item
> > price and the total value to show up in my report. I tried to do this in a
> > query, but the query would not take the long if else statement required to
> > produce the Item Price based on the packaging. Any suggestions.
> > --
> > Lynette

 
Reply With Quote
 
=?Utf-8?B?RHVhbmUgSG9va29t?=
Guest
Posts: n/a
 
      30th May 2007
Do you really only have one significant table regarding this question?
What table is storing the value "Each" as well as the results of your
calculations?
--
Duane Hookom
Microsoft Access MVP


"ksfireworksgal" wrote:

> The table consits of the following fields
>
> Tent #
> Location
> Box Number
> Item Description
> Item Quanity
> Item Packaging
> Each Price
> Pack Price
> Box Price
>
> I created a calculation field called getitemprice here is my code
>
> Private Function getitemprice() As Currency
> If PACKINGTYPE = "EACH" Then
> getitemprice = WIEACHPRICE
> ElseIf PACKINGTYPE = "PACK" Then
> getitemprice = WIPACKPRICE
> ElseIf PACKINGTYPE = "BOX" Then
> getitemprice = WIBOXPRICE
> Else
> End If
> End Function
>
> The price shows up in the calculated field on the form. My question is how
> do I get this calculation in my table. Yes, I do need it in my table. The
> price will not change once it has been calculated. I then need to use this
> calculated answer to figure my total price for the item (boss wants both the
> individual item price and the total price based on the quanity). Exp
> Sparkler #8 161 Each = .50 each X 161 = $80.50.
> --
> Lynette
>
>
> "Duane Hookom" wrote:
>
> > Someone might be able to help if we had information about your table
> > structures and data. Without some specifics, no one can be of much assistance.
> >
> > --
> > Duane Hookom
> > Microsoft Access MVP
> >
> >
> > "ksfireworksgal" wrote:
> >
> > > I have a form that I am calculating the price of an item based on its
> > > packaging. For example if the Packaging = Each then I need the individual
> > > price, if the packaging is pack I need the pack price etc.
> > >
> > > My delmia is how do I take that calculated price and mutiply it but the
> > > quanity to get the value of the the item. And how do I get both the item
> > > price and the total value to show up in my report. I tried to do this in a
> > > query, but the query would not take the long if else statement required to
> > > produce the Item Price based on the packaging. Any suggestions.
> > > --
> > > Lynette

 
Reply With Quote
 
=?Utf-8?B?a3NmaXJld29ya3NnYWw=?=
Guest
Posts: n/a
 
      30th May 2007
No the table is based on a query that brings together data from a three
tables . One tables has the prices, on table has the box detail (item,
quantity, packing) and other table has the tent info.

I want this table to have the calulation values - once i get it to work
right, i will have to make the query a criteria query based on tent number so
i can get a specific value of each tent's items.
--
Lynette


"Duane Hookom" wrote:

> Do you really only have one significant table regarding this question?
> What table is storing the value "Each" as well as the results of your
> calculations?
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "ksfireworksgal" wrote:
>
> > The table consits of the following fields
> >
> > Tent #
> > Location
> > Box Number
> > Item Description
> > Item Quanity
> > Item Packaging
> > Each Price
> > Pack Price
> > Box Price
> >
> > I created a calculation field called getitemprice here is my code
> >
> > Private Function getitemprice() As Currency
> > If PACKINGTYPE = "EACH" Then
> > getitemprice = WIEACHPRICE
> > ElseIf PACKINGTYPE = "PACK" Then
> > getitemprice = WIPACKPRICE
> > ElseIf PACKINGTYPE = "BOX" Then
> > getitemprice = WIBOXPRICE
> > Else
> > End If
> > End Function
> >
> > The price shows up in the calculated field on the form. My question is how
> > do I get this calculation in my table. Yes, I do need it in my table. The
> > price will not change once it has been calculated. I then need to use this
> > calculated answer to figure my total price for the item (boss wants both the
> > individual item price and the total price based on the quanity). Exp
> > Sparkler #8 161 Each = .50 each X 161 = $80.50.
> > --
> > Lynette
> >
> >
> > "Duane Hookom" wrote:
> >
> > > Someone might be able to help if we had information about your table
> > > structures and data. Without some specifics, no one can be of much assistance.
> > >
> > > --
> > > Duane Hookom
> > > Microsoft Access MVP
> > >
> > >
> > > "ksfireworksgal" wrote:
> > >
> > > > I have a form that I am calculating the price of an item based on its
> > > > packaging. For example if the Packaging = Each then I need the individual
> > > > price, if the packaging is pack I need the pack price etc.
> > > >
> > > > My delmia is how do I take that calculated price and mutiply it but the
> > > > quanity to get the value of the the item. And how do I get both the item
> > > > price and the total value to show up in my report. I tried to do this in a
> > > > query, but the query would not take the long if else statement required to
> > > > produce the Item Price based on the packaging. Any suggestions.
> > > > --
> > > > Lynette

 
Reply With Quote
 
=?Utf-8?B?RHVhbmUgSG9va29t?=
Guest
Posts: n/a
 
      30th May 2007
I don't see where you want to store the actual price. I expect you want to
store a value like "Each", "Pack", or "Box" in the Item Packaging field.

I think your table structures aren't correct.

--
Duane Hookom
Microsoft Access MVP


"ksfireworksgal" wrote:

> No the table is based on a query that brings together data from a three
> tables . One tables has the prices, on table has the box detail (item,
> quantity, packing) and other table has the tent info.
>
> I want this table to have the calulation values - once i get it to work
> right, i will have to make the query a criteria query based on tent number so
> i can get a specific value of each tent's items.
> --
> Lynette
>
>
> "Duane Hookom" wrote:
>
> > Do you really only have one significant table regarding this question?
> > What table is storing the value "Each" as well as the results of your
> > calculations?
> > --
> > Duane Hookom
> > Microsoft Access MVP
> >
> >
> > "ksfireworksgal" wrote:
> >
> > > The table consits of the following fields
> > >
> > > Tent #
> > > Location
> > > Box Number
> > > Item Description
> > > Item Quanity
> > > Item Packaging
> > > Each Price
> > > Pack Price
> > > Box Price
> > >
> > > I created a calculation field called getitemprice here is my code
> > >
> > > Private Function getitemprice() As Currency
> > > If PACKINGTYPE = "EACH" Then
> > > getitemprice = WIEACHPRICE
> > > ElseIf PACKINGTYPE = "PACK" Then
> > > getitemprice = WIPACKPRICE
> > > ElseIf PACKINGTYPE = "BOX" Then
> > > getitemprice = WIBOXPRICE
> > > Else
> > > End If
> > > End Function
> > >
> > > The price shows up in the calculated field on the form. My question is how
> > > do I get this calculation in my table. Yes, I do need it in my table. The
> > > price will not change once it has been calculated. I then need to use this
> > > calculated answer to figure my total price for the item (boss wants both the
> > > individual item price and the total price based on the quanity). Exp
> > > Sparkler #8 161 Each = .50 each X 161 = $80.50.
> > > --
> > > Lynette
> > >
> > >
> > > "Duane Hookom" wrote:
> > >
> > > > Someone might be able to help if we had information about your table
> > > > structures and data. Without some specifics, no one can be of much assistance.
> > > >
> > > > --
> > > > Duane Hookom
> > > > Microsoft Access MVP
> > > >
> > > >
> > > > "ksfireworksgal" wrote:
> > > >
> > > > > I have a form that I am calculating the price of an item based on its
> > > > > packaging. For example if the Packaging = Each then I need the individual
> > > > > price, if the packaging is pack I need the pack price etc.
> > > > >
> > > > > My delmia is how do I take that calculated price and mutiply it but the
> > > > > quanity to get the value of the the item. And how do I get both the item
> > > > > price and the total value to show up in my report. I tried to do this in a
> > > > > query, but the query would not take the long if else statement required to
> > > > > produce the Item Price based on the packaging. Any suggestions.
> > > > > --
> > > > > Lynette

 
Reply With Quote
 
=?Utf-8?B?a3NmaXJld29ya3NnYWw=?=
Guest
Posts: n/a
 
      30th May 2007
Because these items are repacks (left overs fireworks). Each item is packed
and listed on a sticker that has a bar code. Each bar code is then entered
by which tent returned the items. The tent is then credit for the return
inventory. Each product may be returned in one of four packings each, pack,
box, brick. Each packing has a different price. The prices will not change
because our price lists are set each season. So the value are not going to
change if they return 50 firecrackers at .75 the value of their credit is
37.50.

Now the boxes will be reissued at the same prices to following season but
not necessarily to the same tent. But the value stays the same because the
price stickers are already on them and we honor that price. So the boss
wants me to be able to produce a report (credit memo) for the repacks being
returned and the same type of report but as an invoice for the repacks being
reissued.

Confused yet, I have been working on this project since last August.

Wright now, I need to be able to produce a report for data I lost and had to
retype that allows me to show each box # the item the quanity return the
price for the packing being returned and the total of the quanity times the
packing price.
Unfortuantley time is a factor today.
--
Lynette


"Duane Hookom" wrote:

> I don't see where you want to store the actual price. I expect you want to
> store a value like "Each", "Pack", or "Box" in the Item Packaging field.
>
> I think your table structures aren't correct.
>
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "ksfireworksgal" wrote:
>
> > No the table is based on a query that brings together data from a three
> > tables . One tables has the prices, on table has the box detail (item,
> > quantity, packing) and other table has the tent info.
> >
> > I want this table to have the calulation values - once i get it to work
> > right, i will have to make the query a criteria query based on tent number so
> > i can get a specific value of each tent's items.
> > --
> > Lynette
> >
> >
> > "Duane Hookom" wrote:
> >
> > > Do you really only have one significant table regarding this question?
> > > What table is storing the value "Each" as well as the results of your
> > > calculations?
> > > --
> > > Duane Hookom
> > > Microsoft Access MVP
> > >
> > >
> > > "ksfireworksgal" wrote:
> > >
> > > > The table consits of the following fields
> > > >
> > > > Tent #
> > > > Location
> > > > Box Number
> > > > Item Description
> > > > Item Quanity
> > > > Item Packaging
> > > > Each Price
> > > > Pack Price
> > > > Box Price
> > > >
> > > > I created a calculation field called getitemprice here is my code
> > > >
> > > > Private Function getitemprice() As Currency
> > > > If PACKINGTYPE = "EACH" Then
> > > > getitemprice = WIEACHPRICE
> > > > ElseIf PACKINGTYPE = "PACK" Then
> > > > getitemprice = WIPACKPRICE
> > > > ElseIf PACKINGTYPE = "BOX" Then
> > > > getitemprice = WIBOXPRICE
> > > > Else
> > > > End If
> > > > End Function
> > > >
> > > > The price shows up in the calculated field on the form. My question is how
> > > > do I get this calculation in my table. Yes, I do need it in my table. The
> > > > price will not change once it has been calculated. I then need to use this
> > > > calculated answer to figure my total price for the item (boss wants both the
> > > > individual item price and the total price based on the quanity). Exp
> > > > Sparkler #8 161 Each = .50 each X 161 = $80.50.
> > > > --
> > > > Lynette
> > > >
> > > >
> > > > "Duane Hookom" wrote:
> > > >
> > > > > Someone might be able to help if we had information about your table
> > > > > structures and data. Without some specifics, no one can be of much assistance.
> > > > >
> > > > > --
> > > > > Duane Hookom
> > > > > Microsoft Access MVP
> > > > >
> > > > >
> > > > > "ksfireworksgal" wrote:
> > > > >
> > > > > > I have a form that I am calculating the price of an item based on its
> > > > > > packaging. For example if the Packaging = Each then I need the individual
> > > > > > price, if the packaging is pack I need the pack price etc.
> > > > > >
> > > > > > My delmia is how do I take that calculated price and mutiply it but the
> > > > > > quanity to get the value of the the item. And how do I get both the item
> > > > > > price and the total value to show up in my report. I tried to do this in a
> > > > > > query, but the query would not take the long if else statement required to
> > > > > > produce the Item Price based on the packaging. Any suggestions.
> > > > > > --
> > > > > > Lynette

 
Reply With Quote
 
=?Utf-8?B?RHVhbmUgSG9va29t?=
Guest
Posts: n/a
 
      30th May 2007
After all of your explanation, I still don't know where you want to store
your values of price etc.

I would expect you to have a table like:
tblInventoryReturns
=================
InvRetID autonumber primary key
TentNum
ItemID
ItemQty
ItemPackaging
ItemQuantity
ItemUnits (values like "Each", "Pack","Box",...)
UnitPrice
--
Duane Hookom
Microsoft Access MVP


"ksfireworksgal" wrote:

> Because these items are repacks (left overs fireworks). Each item is packed
> and listed on a sticker that has a bar code. Each bar code is then entered
> by which tent returned the items. The tent is then credit for the return
> inventory. Each product may be returned in one of four packings each, pack,
> box, brick. Each packing has a different price. The prices will not change
> because our price lists are set each season. So the value are not going to
> change if they return 50 firecrackers at .75 the value of their credit is
> 37.50.
>
> Now the boxes will be reissued at the same prices to following season but
> not necessarily to the same tent. But the value stays the same because the
> price stickers are already on them and we honor that price. So the boss
> wants me to be able to produce a report (credit memo) for the repacks being
> returned and the same type of report but as an invoice for the repacks being
> reissued.
>
> Confused yet, I have been working on this project since last August.
>
> Wright now, I need to be able to produce a report for data I lost and had to
> retype that allows me to show each box # the item the quanity return the
> price for the packing being returned and the total of the quanity times the
> packing price.
> Unfortuantley time is a factor today.
> --
> Lynette
>
>
> "Duane Hookom" wrote:
>
> > I don't see where you want to store the actual price. I expect you want to
> > store a value like "Each", "Pack", or "Box" in the Item Packaging field.
> >
> > I think your table structures aren't correct.
> >
> > --
> > Duane Hookom
> > Microsoft Access MVP
> >
> >
> > "ksfireworksgal" wrote:
> >
> > > No the table is based on a query that brings together data from a three
> > > tables . One tables has the prices, on table has the box detail (item,
> > > quantity, packing) and other table has the tent info.
> > >
> > > I want this table to have the calulation values - once i get it to work
> > > right, i will have to make the query a criteria query based on tent number so
> > > i can get a specific value of each tent's items.
> > > --
> > > Lynette
> > >
> > >
> > > "Duane Hookom" wrote:
> > >
> > > > Do you really only have one significant table regarding this question?
> > > > What table is storing the value "Each" as well as the results of your
> > > > calculations?
> > > > --
> > > > Duane Hookom
> > > > Microsoft Access MVP
> > > >
> > > >
> > > > "ksfireworksgal" wrote:
> > > >
> > > > > The table consits of the following fields
> > > > >
> > > > > Tent #
> > > > > Location
> > > > > Box Number
> > > > > Item Description
> > > > > Item Quanity
> > > > > Item Packaging
> > > > > Each Price
> > > > > Pack Price
> > > > > Box Price
> > > > >
> > > > > I created a calculation field called getitemprice here is my code
> > > > >
> > > > > Private Function getitemprice() As Currency
> > > > > If PACKINGTYPE = "EACH" Then
> > > > > getitemprice = WIEACHPRICE
> > > > > ElseIf PACKINGTYPE = "PACK" Then
> > > > > getitemprice = WIPACKPRICE
> > > > > ElseIf PACKINGTYPE = "BOX" Then
> > > > > getitemprice = WIBOXPRICE
> > > > > Else
> > > > > End If
> > > > > End Function
> > > > >
> > > > > The price shows up in the calculated field on the form. My question is how
> > > > > do I get this calculation in my table. Yes, I do need it in my table. The
> > > > > price will not change once it has been calculated. I then need to use this
> > > > > calculated answer to figure my total price for the item (boss wants both the
> > > > > individual item price and the total price based on the quanity). Exp
> > > > > Sparkler #8 161 Each = .50 each X 161 = $80.50.
> > > > > --
> > > > > Lynette
> > > > >
> > > > >
> > > > > "Duane Hookom" wrote:
> > > > >
> > > > > > Someone might be able to help if we had information about your table
> > > > > > structures and data. Without some specifics, no one can be of much assistance.
> > > > > >
> > > > > > --
> > > > > > Duane Hookom
> > > > > > Microsoft Access MVP
> > > > > >
> > > > > >
> > > > > > "ksfireworksgal" wrote:
> > > > > >
> > > > > > > I have a form that I am calculating the price of an item based on its
> > > > > > > packaging. For example if the Packaging = Each then I need the individual
> > > > > > > price, if the packaging is pack I need the pack price etc.
> > > > > > >
> > > > > > > My delmia is how do I take that calculated price and mutiply it but the
> > > > > > > quanity to get the value of the the item. And how do I get both the item
> > > > > > > price and the total value to show up in my report. I tried to do this in a
> > > > > > > query, but the query would not take the long if else statement required to
> > > > > > > produce the Item Price based on the packaging. Any suggestions.
> > > > > > > --
> > > > > > > Lynette

 
Reply With Quote
 
=?Utf-8?B?a3NmaXJld29ya3NnYWw=?=
Guest
Posts: n/a
 
      30th May 2007
I have a similar table called Repack Box Values

It has
Box #
ItemDescription
Quanity
Packing


This where I want to put Individal Value and Quanity Value
--
Lynette


"Duane Hookom" wrote:

> After all of your explanation, I still don't know where you want to store
> your values of price etc.
>
> I would expect you to have a table like:
> tblInventoryReturns
> =================
> InvRetID autonumber primary key
> TentNum
> ItemID
> ItemQty
> ItemPackaging
> ItemQuantity
> ItemUnits (values like "Each", "Pack","Box",...)
> UnitPrice
> --
> Duane Hookom
> Microsoft Access MVP
>
>
> "ksfireworksgal" wrote:
>
> > Because these items are repacks (left overs fireworks). Each item is packed
> > and listed on a sticker that has a bar code. Each bar code is then entered
> > by which tent returned the items. The tent is then credit for the return
> > inventory. Each product may be returned in one of four packings each, pack,
> > box, brick. Each packing has a different price. The prices will not change
> > because our price lists are set each season. So the value are not going to
> > change if they return 50 firecrackers at .75 the value of their credit is
> > 37.50.
> >
> > Now the boxes will be reissued at the same prices to following season but
> > not necessarily to the same tent. But the value stays the same because the
> > price stickers are already on them and we honor that price. So the boss
> > wants me to be able to produce a report (credit memo) for the repacks being
> > returned and the same type of report but as an invoice for the repacks being
> > reissued.
> >
> > Confused yet, I have been working on this project since last August.
> >
> > Wright now, I need to be able to produce a report for data I lost and had to
> > retype that allows me to show each box # the item the quanity return the
> > price for the packing being returned and the total of the quanity times the
> > packing price.
> > Unfortuantley time is a factor today.
> > --
> > Lynette
> >
> >
> > "Duane Hookom" wrote:
> >
> > > I don't see where you want to store the actual price. I expect you want to
> > > store a value like "Each", "Pack", or "Box" in the Item Packaging field.
> > >
> > > I think your table structures aren't correct.
> > >
> > > --
> > > Duane Hookom
> > > Microsoft Access MVP
> > >
> > >
> > > "ksfireworksgal" wrote:
> > >
> > > > No the table is based on a query that brings together data from a three
> > > > tables . One tables has the prices, on table has the box detail (item,
> > > > quantity, packing) and other table has the tent info.
> > > >
> > > > I want this table to have the calulation values - once i get it to work
> > > > right, i will have to make the query a criteria query based on tent number so
> > > > i can get a specific value of each tent's items.
> > > > --
> > > > Lynette
> > > >
> > > >
> > > > "Duane Hookom" wrote:
> > > >
> > > > > Do you really only have one significant table regarding this question?
> > > > > What table is storing the value "Each" as well as the results of your
> > > > > calculations?
> > > > > --
> > > > > Duane Hookom
> > > > > Microsoft Access MVP
> > > > >
> > > > >
> > > > > "ksfireworksgal" wrote:
> > > > >
> > > > > > The table consits of the following fields
> > > > > >
> > > > > > Tent #
> > > > > > Location
> > > > > > Box Number
> > > > > > Item Description
> > > > > > Item Quanity
> > > > > > Item Packaging
> > > > > > Each Price
> > > > > > Pack Price
> > > > > > Box Price
> > > > > >
> > > > > > I created a calculation field called getitemprice here is my code
> > > > > >
> > > > > > Private Function getitemprice() As Currency
> > > > > > If PACKINGTYPE = "EACH" Then
> > > > > > getitemprice = WIEACHPRICE
> > > > > > ElseIf PACKINGTYPE = "PACK" Then
> > > > > > getitemprice = WIPACKPRICE
> > > > > > ElseIf PACKINGTYPE = "BOX" Then
> > > > > > getitemprice = WIBOXPRICE
> > > > > > Else
> > > > > > End If
> > > > > > End Function
> > > > > >
> > > > > > The price shows up in the calculated field on the form. My question is how
> > > > > > do I get this calculation in my table. Yes, I do need it in my table. The
> > > > > > price will not change once it has been calculated. I then need to use this
> > > > > > calculated answer to figure my total price for the item (boss wants both the
> > > > > > individual item price and the total price based on the quanity). Exp
> > > > > > Sparkler #8 161 Each = .50 each X 161 = $80.50.
> > > > > > --
> > > > > > Lynette
> > > > > >
> > > > > >
> > > > > > "Duane Hookom" wrote:
> > > > > >
> > > > > > > Someone might be able to help if we had information about your table
> > > > > > > structures and data. Without some specifics, no one can be of much assistance.
> > > > > > >
> > > > > > > --
> > > > > > > Duane Hookom
> > > > > > > Microsoft Access MVP
> > > > > > >
> > > > > > >
> > > > > > > "ksfireworksgal" wrote:
> > > > > > >
> > > > > > > > I have a form that I am calculating the price of an item based on its
> > > > > > > > packaging. For example if the Packaging = Each then I need the individual
> > > > > > > > price, if the packaging is pack I need the pack price etc.
> > > > > > > >
> > > > > > > > My delmia is how do I take that calculated price and mutiply it but the
> > > > > > > > quanity to get the value of the the item. And how do I get both the item
> > > > > > > > price and the total value to show up in my report. I tried to do this in a
> > > > > > > > query, but the query would not take the long if else statement required to
> > > > > > > > produce the Item Price based on the packaging. Any suggestions.
> > > > > > > > --
> > > > > > > > Lynette

 
Reply With Quote
 
John W. Vinson
Guest
Posts: n/a
 
      30th May 2007
On Wed, 30 May 2007 12:18:00 -0700, ksfireworksgal
<(E-Mail Removed)> wrote:

>I have a similar table called Repack Box Values
>
>It has
>Box #
>ItemDescription
>Quanity
>Packing
>
>
>This where I want to put Individal Value and Quanity Value


If you want to store the values, then you need fields into which to store the
values. Are Values the same as Price in your model?

John W. Vinson [MVP]
 
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
RE: Calculations in reports KARL DEWEY Microsoft Access Reports 0 12th Aug 2009 04:16 PM
calculations forms and reports =?Utf-8?B?ZGF0YWh1bnRlcg==?= Microsoft Access 6 9th Sep 2007 09:35 PM
RE: Calculations in Reports =?Utf-8?B?S2xhdHV1?= Microsoft Access Reports 1 10th Jan 2007 02:22 PM
Re: Calculations in Reports Jeff Boyce Microsoft Access Reports 1 5th Jan 2007 08:34 PM
Calculations on forms to be shown in reports =?Utf-8?B?RW1tYQ==?= Microsoft Access Forms 2 22nd Apr 2005 02:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:49 PM.