auto fill, copying and sorting sheets using macros if possible since I am already using it.

khelp11

New Member
Joined
Mar 13, 2024
Messages
10
Office Version
  1. 2011
Platform
  1. Windows
I am needing two different things for this,

1. I am needing to be able to enter either a bid number or bid name and have it automatically fill in the other information from the bidders sheet for each live and silent auction sheets.

2. Needing all lines from silent and live auction sheets to copy and pull over to the check out sheet and sort by bidder number.

Auction Platform 1.xlsm
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
21earrings1
33cowboy art4
44car6
58t-shirt8
69tanktop4
710shoes11
811blue board5
916rug7
1018elk hunt20
1120phone18
1242lamp4
Silent



Auction Platform 1.xlsm
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
22necklace9
35chair 8
46frame4
57board6
612pink frame14
713dresser1
814elk horn5
915deer mount7
1017buffalo hide8
1119buffalo hunt15
1221sign13
Live


Auction Platform 1.xlsm
ABC
1Bid NumberNamePhone Number
21joey(287) 201-8233
32cody(111) 115-5533
43krys(345) 666-9999
54sid(199) 999-9983
65di(209) 129-3841
76jame(111) 111-1111
87aie(333) 333-3333
98aaaa(228) 486-6047
109kjsdfie(228) 552-6058
1110ksdjfi(228) 618-6069
1211lsdoi(228) 684-6079
1312ksjdfi(228) 750-6090
1413stu(228) 816-6101
1514bo(228) 882-6111
1615toe(228) 948-6122
1716moe wkj(229) 014-6132
1817eeed(229) 080-6143
1918asd(229) 146-6154
2019sdkji(229) 212-6164
2120kjsdi(229) 278-6175
Bidders


Auction Platform 1.xlsm
ABCDEFG
1Item #Item DescriptionBuyerBidder #Winning BidAmount PAIDpayment type
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Check out
Cells with Data Validation
CellAllowCriteria
G1:G22List=$L$3:$L$5
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
How about something like this:

Book2
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
21earrings1joey$14.00
33cowboy art4sid$500.00
44car6jame$1,501.00
58t-shirt8aaaa$4.00
69tanktop4sid$5.00
710shoes11lsdoi$15.00
811blue board5di$20.00
916rug7aie$100.00
1018elk hunt20kjsdi$200.00
1120phone18asd$50.00
1242lamp4sid$60.00
Silent
Cell Formulas
RangeFormula
D2:D12D2=XLOOKUP(C2,BiddersTbl[Bid Number],BiddersTbl[Name],"Not Found",0)


Book2
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
22necklace9kjsdfie
35chair 8aaaa
46frame4sid
57board6jame
612pink frame14bo
713dresser1joey
814elk horn5di
915deer mount7aie
1017buffalo hide8aaaa
1119buffalo hunt15toe
1221sign13stu
Live
Cell Formulas
RangeFormula
D2:D12D2=XLOOKUP(C2,BiddersTbl[Bid Number],BiddersTbl[Name],"Not Found",0)


Book2
ABC
1Bid NumberNamePhone Number
21joey2872018233
32cody1111155533
43krys3456669999
54sid1999999983
65di2091293841
76jame1111111111
87aie3333333333
98aaaa2284866047
109kjsdfie2285526058
1110ksdjfi2286186069
1211lsdoi2286846079
1312ksjdfi2287506090
1413stu2288166101
1514bo2288826111
1615toe2289486122
1716moe wkj2290146132
1817eeed2290806143
1918asd2291466154
2019sdkji2292126164
2120kjsdi2292786175
Bidders


Cell Formulas
RangeFormula
A2:A23A2=SORT(VSTACK(SilentTbl[Item '#],LiveTbl[Item '#]))
B2:B23B2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Item Description],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Item Description],0,0))
C2:C23C2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Buyer],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Buyer],0,0))
D2:D23D2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Bidder '#],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Bidder '#],0,0))
E2:E23E2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Winning Bid],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Winning Bid],0,0))
Dynamic array formulas.
 
Upvote 0
How about something like this:

Book2
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
21earrings1joey$14.00
33cowboy art4sid$500.00
44car6jame$1,501.00
58t-shirt8aaaa$4.00
69tanktop4sid$5.00
710shoes11lsdoi$15.00
811blue board5di$20.00
916rug7aie$100.00
1018elk hunt20kjsdi$200.00
1120phone18asd$50.00
1242lamp4sid$60.00
Silent
Cell Formulas
RangeFormula
D2:D12D2=XLOOKUP(C2,BiddersTbl[Bid Number],BiddersTbl[Name],"Not Found",0)


Book2
ABCDE
1Item #Item DescriptionBidder #BuyerWinning Bid
22necklace9kjsdfie
35chair 8aaaa
46frame4sid
57board6jame
612pink frame14bo
713dresser1joey
814elk horn5di
915deer mount7aie
1017buffalo hide8aaaa
1119buffalo hunt15toe
1221sign13stu
Live
Cell Formulas
RangeFormula
D2:D12D2=XLOOKUP(C2,BiddersTbl[Bid Number],BiddersTbl[Name],"Not Found",0)


Book2
ABC
1Bid NumberNamePhone Number
21joey2872018233
32cody1111155533
43krys3456669999
54sid1999999983
65di2091293841
76jame1111111111
87aie3333333333
98aaaa2284866047
109kjsdfie2285526058
1110ksdjfi2286186069
1211lsdoi2286846079
1312ksjdfi2287506090
1413stu2288166101
1514bo2288826111
1615toe2289486122
1716moe wkj2290146132
1817eeed2290806143
1918asd2291466154
2019sdkji2292126164
2120kjsdi2292786175
Bidders


Cell Formulas
RangeFormula
A2:A23A2=SORT(VSTACK(SilentTbl[Item '#],LiveTbl[Item '#]))
B2:B23B2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Item Description],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Item Description],0,0))
C2:C23C2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Buyer],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Buyer],0,0))
D2:D23D2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Bidder '#],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Bidder '#],0,0))
E2:E23E2=IF(COUNTIF(SilentTbl[Item '#],CheckOut!$A2)>0,XLOOKUP(CheckOut!$A2,SilentTbl[Item '#],SilentTbl[Winning Bid],0,0),XLOOKUP(CheckOut!$A2,LiveTbl[Item '#],LiveTbl[Winning Bid],0,0))
Dynamic array formulas.
These formulas do not work when I copy them in the fields.
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,661
Members
449,114
Latest member
aides

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top