Linking Excel Data to Excel-Based Calendar

Closed
mcamp63 Posts 1 Registration date Monday February 8, 2010 Status Member Last seen February 8, 2010 - Feb 8, 2010 at 07:42 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Feb 9, 2010 at 09:37 AM
Hello,

Okay, here I go. I have a workbook which contains a tab (CalendarData) with information as follows:

Column A - Name
Column B - Apt #
Column C - Initial Follow-Up
Column D - 30-Day
Column E - 90-Day
Column F - 180-Day

The calendar tab is simply called 'Calendar'

I need to have the information in Columns A & B populate the dates on the calendar which coincide with Columns C, D, E, and F.

Can anyone help me with this?
Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Feb 9, 2010 at 09:37 AM
One of most easy way of doing it would be if you can add a column to CalendarData and use the formula

=A1 & "|" & B1 and fill it to the last row (lets say you add in column C)

Then in calendar you can use VLOOKUP as

=vlookup(a1 & "|" & b1, CalendarData !C:G, 2,FALSE) to get the Initial Follow-Up and so on
5