Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I have created two worksheets:
1) Auction Items Item# Table# Location# ItemDescription WinBid are the headers of the data. 2) Bidders Bidder# FirstName LastName I would like to be able to create a macro or something that will allow me to enter the item#, bidder# and winning bid price and have a sheet filled with. ie. Item# 2 (Handcrafted Table) Bidder# 12 (John Doe) Winning Bid $250 Can excel pull from two sheets and created another sheet with all the final details? I am a little new to excel (version 2000) it is the only tool/application available to us at this time. If anyone can point me in the right direction it will be a great help. Thanks dD |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
DoubleD;
Create your table thusly(suggested format) First Last ID Item Table Location ItemDesc Bid Concatenate Enter your bidder information. In the Concatenate field type the following; =concatenate(a1," ",b1) This will combine the bidders first and last name. Drag this formula down the column as needed. In cell J2 type; =max(h2:h10) Create a form that has fields named what you like and add pics, etc. Now, Next to the cell that says name enter this: =IF(LOOKUP(J2,H2:H10)=J2,LOOKUP(J2,H2:H10,I2:I10), "") This is your first and last name. In the cell next to Bidder# type; =IF(LOOKUP(J2,H2:H10)=J2,LOOKUP(J2,H2:H10,c2:c10), "") This is your Bidder #. Next to the cell that is labeled Winning Bid type; =j2 I think that's right. Post back if it throws an error. God Bless Frank Pytel "DoubleD" wrote: I have created two worksheets: 1) Auction Items Item# Table# Location# ItemDescription WinBid are the headers of the data. 2) Bidders Bidder# FirstName LastName I would like to be able to create a macro or something that will allow me to enter the item#, bidder# and winning bid price and have a sheet filled with. ie. Item# 2 (Handcrafted Table) Bidder# 12 (John Doe) Winning Bid $250 Can excel pull from two sheets and created another sheet with all the final details? I am a little new to excel (version 2000) it is the only tool/application available to us at this time. If anyone can point me in the right direction it will be a great help. Thanks dD |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sub Macro vrs Function Macro Auto Start | Excel Discussion (Misc queries) | |||
How to start a Macro | Excel Discussion (Misc queries) | |||
Macro Start | Excel Discussion (Misc queries) | |||
formula to lookup & sum totals, given a start inv.# & finish inv.# | Excel Worksheet Functions | |||
Lookup with search range start based on position of last blank lin | Excel Worksheet Functions |