Hey there.
I need to make an excel with 13 sheets.
12 Sheets with every month of the year, and 1 sheet that will contain the "database".
So we have the sheets "January, February etc" and the sheet "Database"
In the "Database" sheet, we have a list of people where column A is the Birth Date, column B the name and column C the Phone Number.
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Birth Date
[/TD]
[TD]Name[/TD]
[TD]Phone Number[/TD]
[/TR]
[TR]
[TD]13.01.1979[/TD]
[TD]Roger[/TD]
[TD]901823901[/TD]
[/TR]
[TR]
[TD]12.02.1977[/TD]
[TD]John[/TD]
[TD]10928390123[/TD]
[/TR]
[TR]
[TD]25.02.1991[/TD]
[TD]Dana[/TD]
[TD]0918239011[/TD]
[/TR]
[TR]
[TD]27.01.1920[/TD]
[TD]Laura[/TD]
[TD]09128390128[/TD]
[/TR]
[TR]
[TD]11.03.2005[/TD]
[TD]Bill[/TD]
[TD]1092839018.[/TD]
[/TR]
</tbody>[/TABLE]
My goal is to put in each sheet the people who's birth month matches that sheet.
So Roger and Laura will be in "January" sheet, Bill in "March" sheet and so on.
Example:
"January" sheet:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Birth Date
[/TD]
[TD]Name
[/TD]
[TD]Phone Number
[/TD]
[/TR]
[TR]
[TD]13.01.1979[/TD]
[TD]Roger[/TD]
[TD]901823901[/TD]
[/TR]
[TR]
[TD]27.01.1920[/TD]
[TD]Laura[/TD]
[TD]09128390128[/TD]
[/TR]
</tbody>[/TABLE]
I tried doing with VLOOKUP and INDEX MATCH but with no luck so far. I am using MID function to select the people with birthday in January
=MID(A2,4,2)
Maybe you can throw on a couple of tips.
Thanks
I need to make an excel with 13 sheets.
12 Sheets with every month of the year, and 1 sheet that will contain the "database".
So we have the sheets "January, February etc" and the sheet "Database"
In the "Database" sheet, we have a list of people where column A is the Birth Date, column B the name and column C the Phone Number.
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Birth Date
[/TD]
[TD]Name[/TD]
[TD]Phone Number[/TD]
[/TR]
[TR]
[TD]13.01.1979[/TD]
[TD]Roger[/TD]
[TD]901823901[/TD]
[/TR]
[TR]
[TD]12.02.1977[/TD]
[TD]John[/TD]
[TD]10928390123[/TD]
[/TR]
[TR]
[TD]25.02.1991[/TD]
[TD]Dana[/TD]
[TD]0918239011[/TD]
[/TR]
[TR]
[TD]27.01.1920[/TD]
[TD]Laura[/TD]
[TD]09128390128[/TD]
[/TR]
[TR]
[TD]11.03.2005[/TD]
[TD]Bill[/TD]
[TD]1092839018.[/TD]
[/TR]
</tbody>[/TABLE]
My goal is to put in each sheet the people who's birth month matches that sheet.
So Roger and Laura will be in "January" sheet, Bill in "March" sheet and so on.
Example:
"January" sheet:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Birth Date
[/TD]
[TD]Name
[/TD]
[TD]Phone Number
[/TD]
[/TR]
[TR]
[TD]13.01.1979[/TD]
[TD]Roger[/TD]
[TD]901823901[/TD]
[/TR]
[TR]
[TD]27.01.1920[/TD]
[TD]Laura[/TD]
[TD]09128390128[/TD]
[/TR]
</tbody>[/TABLE]
I tried doing with VLOOKUP and INDEX MATCH but with no luck so far. I am using MID function to select the people with birthday in January
=MID(A2,4,2)
Maybe you can throw on a couple of tips.
Thanks