ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Is Excel capable of doing this function? (https://www.excelbanter.com/excel-discussion-misc-queries/138955-excel-capable-doing-function.html)

JacisChildCare

Is Excel capable of doing this function?
 
I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.

Trevor Shuttleworth

Is Excel capable of doing this function?
 
Use VLOOKUP

Regards

Trevor


"JacisChildCare" wrote in message
...
I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.




FC

Is Excel capable of doing this function?
 
Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.


JacisChildCare

Is Excel capable of doing this function?
 

Thanks.
A couple of more questions: Where do I creat the master list with the
invetory...do I add a worksheet to the invoice workbook with all of the
information and then link the item number cells to the inventory list?

"Trevor Shuttleworth" wrote:

Use VLOOKUP

Regards

Trevor


"JacisChildCare" wrote in message
...
I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.





JacisChildCare

Is Excel capable of doing this function?
 
FC,
Thank you. I would love to have the directions.

"FC" wrote:

Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.


Don Guillett

Is Excel capable of doing this function?
 
Have you tried looking in the help index for VLOOKUP?
--
Don Guillett
SalesAid Software

"JacisChildCare" wrote in message
...

Thanks.
A couple of more questions: Where do I creat the master list with the
invetory...do I add a worksheet to the invoice workbook with all of the
information and then link the item number cells to the inventory list?

"Trevor Shuttleworth" wrote:

Use VLOOKUP

Regards

Trevor


"JacisChildCare" wrote in
message
...
I have created an invoice to use for my scrapbook business. I don't know
if
excel can do the following thing or not. If it can, how do I set it up
to
function?

I have a place for an item number. Is there a way to enter the item
number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the
entire
inventory list for all products.

Thanks for any help.






Gord Dibben

Is Excel capable of doing this function?
 
Use Data Validation for in-cell drop-down for selecting an item and VLOOKUP
for filling in the other cells.

See Debra Dalgleish's site for more on VLOOKUP and Data
Validation lists for entering the choices.

http://www.contextures.on.ca/xlFunctions02.html

http://www.contextures.on.ca/xlDataVal01.html

Note the section on using DV lists from another worksheet by naming the list.


Gord Dibben MS Excel MVP

On Sat, 14 Apr 2007 08:30:03 -0700, JacisChildCare
wrote:

FC,
Thank you. I would love to have the directions.

"FC" wrote:

Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.



FC

Is Excel capable of doing this function?
 
Sorry for the timing but I had to go away. As promise here goes:
1st we'll create the dropdown list, then the VLOOKUP.
For the dropdown you'll need minimun 2 worksheets ( could be more ).
In sheet 2 create a list of items as much as you want ej:
A B C
1 z1561 stamp and set $ 26.95
2 z1562 not stamp, set $ 20.00
3 z1563 could be blank $10.00
Select A1 to A3 and at the upper right side of the sheet assign(write) a
cell name for those 3 items (ej. ITEM ) and press enter.
Go to sheet 1 and select cell A1
On the toolbar on the top menu select DATA, click on VALIDATION and
in the dropdown list select LIST. In the box below write =ITEM (don't forget
the equal sign). Check "ignore blank" and " in drop down list ". Click OK.
You are done with the DROPDOWN list.Try it first.
Now the VLOOKUP formula.
In B1 write this formula =VLOOKUP($A1,SHEET2!A1:C3,COLUMNS(A:B1,0)
You are done!
Of course you'll have to adjust the number of columns/rows as needed. Also
the puntuation in the formula has to be exact as is. HIH, enjoy it
"JacisChildCare" wrote:

FC,
Thank you. I would love to have the directions.

"FC" wrote:

Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.


FC

Is Excel capable of doing this function?
 
Sorry the naming of the cell is UPPER LEFT SIDE ( NOT right side).Got to go.

"FC" wrote:

Sorry for the timing but I had to go away. As promise here goes:
1st we'll create the dropdown list, then the VLOOKUP.
For the dropdown you'll need minimun 2 worksheets ( could be more ).
In sheet 2 create a list of items as much as you want ej:
A B C
1 z1561 stamp and set $ 26.95
2 z1562 not stamp, set $ 20.00
3 z1563 could be blank $10.00
Select A1 to A3 and at the upper right side of the sheet assign(write) a
cell name for those 3 items (ej. ITEM ) and press enter.
Go to sheet 1 and select cell A1
On the toolbar on the top menu select DATA, click on VALIDATION and
in the dropdown list select LIST. In the box below write =ITEM (don't forget
the equal sign). Check "ignore blank" and " in drop down list ". Click OK.
You are done with the DROPDOWN list.Try it first.
Now the VLOOKUP formula.
In B1 write this formula =VLOOKUP($A1,SHEET2!A1:C3,COLUMNS(A:B1,0)
You are done!
Of course you'll have to adjust the number of columns/rows as needed. Also
the puntuation in the formula has to be exact as is. HIH, enjoy it
"JacisChildCare" wrote:

FC,
Thank you. I would love to have the directions.

"FC" wrote:

Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.


JacisChildCare

Is Excel capable of doing this function?
 
Thank you so much for the help. I think I am understanding it now. As soon as
I get all of our items listed, I will try to finish setting it up. Thanks
again!

"FC" wrote:

Sorry the naming of the cell is UPPER LEFT SIDE ( NOT right side).Got to go.

"FC" wrote:

Sorry for the timing but I had to go away. As promise here goes:
1st we'll create the dropdown list, then the VLOOKUP.
For the dropdown you'll need minimun 2 worksheets ( could be more ).
In sheet 2 create a list of items as much as you want ej:
A B C
1 z1561 stamp and set $ 26.95
2 z1562 not stamp, set $ 20.00
3 z1563 could be blank $10.00
Select A1 to A3 and at the upper right side of the sheet assign(write) a
cell name for those 3 items (ej. ITEM ) and press enter.
Go to sheet 1 and select cell A1
On the toolbar on the top menu select DATA, click on VALIDATION and
in the dropdown list select LIST. In the box below write =ITEM (don't forget
the equal sign). Check "ignore blank" and " in drop down list ". Click OK.
You are done with the DROPDOWN list.Try it first.
Now the VLOOKUP formula.
In B1 write this formula =VLOOKUP($A1,SHEET2!A1:C3,COLUMNS(A:B1,0)
You are done!
Of course you'll have to adjust the number of columns/rows as needed. Also
the puntuation in the formula has to be exact as is. HIH, enjoy it
"JacisChildCare" wrote:

FC,
Thank you. I would love to have the directions.

"FC" wrote:

Vlookup will definitely help you, and also you can combine it with a DROPDOWN
list.
Let me know if you need directions on how to do it and I'll get back to you.

"JacisChildCare" wrote:

I have created an invoice to use for my scrapbook business. I don't know if
excel can do the following thing or not. If it can, how do I set it up to
function?

I have a place for an item number. Is there a way to enter the item number
(z1561) and have the discription (stamp pad set) and the price (26.95)
automatically come up. I know if it can, I will have to create the entire
inventory list for all products.

Thanks for any help.



All times are GMT +1. The time now is 08:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com