Call List

OldandInTheWay

New Member
Joined
Jul 12, 2005
Messages
13
I'm trying to make a call list. I have 2 worksheets, 1 with the database the othe is the call list. I gotten as far as that when you put a "x" in column a in the database it moves the information over to the call list. My problem is that it moves the information to the same row it's in in the database. Is there anyway I can get the information to fill the call list top to bottom without spaces?

Thanks.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I'm trying to make a call list. I have 2 worksheets, 1 with the database the othe is the call list. I gotten as far as that when you put a "x" in column a in the database it moves the information over to the call list. My problem is that it moves the information to the same row it's in in the database. Is there anyway I can get the information to fill the call list top to bottom without spaces?

Thanks.
OldandInTheWay

I am not quite sure what you mean. Can you provide some sample data and apply your explanation to that data? If you want to show a sample of your sheet on the board, here's how:
http://www.mrexcel.com/board2/viewtopic.php?t=92622
 
Upvote 0
Book1.xls
ABCDEF
2xCOMPANYATOM555-444-3333555-444-3333COMPANYA,TOM,555-444-3333
3COMPANYBBOB555-444-3333555-444-3333 
4COMPANYC****555-444-3333555-444-3333 
5xCOMPANYDHARRY555-444-3333555-444-3333COMPANYD,HARRY,555-444-3333
6COMPANYEJILL555-444-3333555-444-3333 
7xCOMPANYFSAM555-444-3333555-444-3333COMPANYF,SAM,555-444-3333
Sheet2


I may not be explaining my problem correctly. In the same work book, there are 2 worksheets, 1 is a blank call list (1st example), the other is the database(above). What I would like to do is put an "x" in column A of the database if we want to include this person on the call list, then move the info over to the worksheet "call list". I'm doing that with the if function, but the information is copied on the same row it's on in the database. Is there a formula that you can use so the information is copied on the next empty line in the call list. We use these list to make call list for construction bids so they're just select , then print and done.

Hope this is more understandable
 
Upvote 0
Repeat: Advanced Filter or MSQuery and YES there is a tricky formula to do this that I'm too lazy to construct, but I'm sure someone will eventually post it.
But why mess with formulas when there are built-in tools to do this?

lenze
 
Upvote 0
I have to admit that even though I know little about Excel, I know even less about advanced filtering & MSQuery, but I'll read up and see what I can do. But thanks for your advise.

And I'll follow your motto
 
Upvote 0
A formula approach...
Book31
ABCDEFGHIJKL
103Call List
2Field-1Field-2Field-3IdxPosField-1Field-2Field-3
3xCOMPANY ATOM555-444-333311COMPANY ATOM555-444-3333
4COMPANY BBOB555-444-3333 4COMPANY DHARRY555-444-3333
5COMPANY C****555-444-3333 6COMPANY FSAM555-444-3333
6xCOMPANY DHARRY555-444-33332    
7COMPANY EJILL555-444-3333 
8xCOMPANY FSAM555-444-33333
9
10
Sheet1


E1 must house a 0.

E3, copied down:

=IF(A3="x",LOOKUP(9.99999999999999E+307,$E$1:E2)+1,"")

H1:

=LOOKUP(9.99999999999999E+307,E1:E8)

H3, copied down:

=IF(ROWS($H$3:H3)<=$H$1,MATCH(ROWS($H$3:H3),$E$3:$E$8,1),"")

J3, copied across and down:

=IF(N($H3),INDEX(B$3:B$8,$H3),"")
 
Upvote 0
I've been trying the advanced filtering and taking a stab with MSQuery and not having any luck getting what I need. All I want to do is have a list of suppliers w/ phone #s that when you type an "X" into the cell besides it it puts the information from that row into a list that I can printed and hand off the list for someone to call those names. I'll then exit the program without saving and then do the same thing for the next job that comes in. And I just can't seem to get anything to work that simply with filltering or MSQuery.
 
Upvote 0

Forum statistics

Threads
1,214,879
Messages
6,122,065
Members
449,064
Latest member
scottdog129

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