Automaticaly copy a list into another sheet

LynnSoto

New Member
Joined
Nov 13, 2009
Messages
2
Hi,

I have this call log report list where i put all the clients that i call.
I want to copy automaticaly the information on one row from my Worksheet called Call Log whenever i put prospect A in one of the Columns to my worksheet called propect A.

I dont know if this is posible, but i would like to know the options i have.

Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
You could probably do it with formulas in your sheets Prospect A etc, but it will be easier with some macros.

What you want first is a macro to detect when a change is made to the column in which you enter A, B etc. This then continues to copy the row across to the relevant sheet.

How well do you understand macros?
can you write some basic ones?
 
Upvote 0
Welcome to the Board!

Sounds like you want to use the Vlookup function. If the worksheets exist in the same workbook, it might look something like this (where cell A2 contains the name of the prospect)

=IF(A2="","",VLOOKUP(A2,Sheet2!A1:G30,2,))

Note: be sure to keep that trailing comma at the end of the Vlookup function.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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