Might be a stupid question

Jrose85

New Member
Joined
Dec 5, 2016
Messages
4
We keep our database in Excel and update it as needed. However we have different sheets for different form purposes. Such as one form for applications sent, mail received for a certain client, etc. We fill in the persons name, client id, specific dates, etc., on each sheet. But what I was wondering is, is there a way to transfer the data from one sheet to another. Because each sheet contains thousands of cells, and id rather not have to individually look up the person's info, and copy and paste the info. I may be missing an easy way to do this but I'm blanking at a solution. :LOL: :) Any help is appreciated.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Your question is too vague. An example of your data is welcome as well as more detailed description of what you're trying to accomplish.
 
Upvote 0
A sample of the data is: Column A: Date form was sent, Column B ID, Column C Client Last Name, Column D Client First Name, Column E Client Personal ID, Column F: type of form, Column G DOB, Column H Gender, etc.

Each sheet contains that info, but some of the columns have different information, such as the form type may be different or dates may differ.

What id like to be able to do is copy specific client info, like their ids, names, DOB, etc into another sheet, but have it go to the appropriate person. Because the information isn't sorted alphabetically, its by date. Otherwise Id have to copy and paste individual information from one sheet to the next. Not sure if I made that clear or more confusing.
 
Upvote 0
ADVERTISEMENT
Without actual data, it's hard to say. But I would use VBA to search clients.
 
Upvote 0
I unfortunately cannot post the data as it contains highly sensitive data. I'm unsure how to use VBA but I'll google it.
 
Upvote 0
ADVERTISEMENT
You could use Find method of Range object.
Equally, you could use any worksheet function by using WorksheetFunction object.
 
Upvote 0
Yea I've been using the find option. Which is helpful.
But unfortunately I am having to complete work that a former coworker didn't do. Which ends up being thousands of cells of information they failed to complete. Guess I'll have to do it using the Find option for each one :eek::LOL:.
I appreciate your help. Thank you
 
Upvote 0
But Find can be used not only as Cells.Find (which forces scan whole sheet), but you can limit the search by Range:

Dim cell As Range
Set cell = Range("B:B").Find("Jackson") '//Search in column B
If Not cell Is Nothing Then
'//Jackson is found. Do the rest of work.
End If
 
Upvote 0
What do you use to search? If you use their ID then search with vlookup.

Ex. Vlookup(123,'Sheet1'$B$2:'Sheet1'$Z$2,2) This would pull column C info for associated ID. You need to type in the ID you need, but you could also simply set it to Vlookup(F2,'Sheet1'$B$2:'Sheet1'$Z$2,2) and put a bunch of ID's you are looking up in column F. Drag down and it will look them up.
 
Upvote 0

Forum statistics

Threads
1,196,408
Messages
6,015,102
Members
441,870
Latest member
kojack

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