default_name
Board Regular
- Joined
- May 16, 2018
- Messages
- 180
- Office Version
- 365
- 2016
- Platform
- Windows
- MacOS
Hey guys,
I am trying to set up a spreadsheet to fill in time slots based on day and time information.
There are two sheets in the workbook (Calendar and Log)
Here is how I have it set up:
The name of this sheet is Calendar
The name of this sheet is Log
I would like the Calendar sheet to fill in the correct cells of the scheduled appointments, based on the data found in the Log sheet.
Basically, given the data that is currently in the Log sheet, the Calendar sheet should end up looking like this:
Is there some sort of IF, LOOKUP or MATCH function that I can use in the cells of the Calendar sheet?
I tried using various mixtures of LOOKUP statements, AND statements, and IF statements, but it quickly became really complicated.
The workbook cannot be macro-enabled, so I am looking for a NON-VBA solution.
I hope this makes sense. Let me know if I need to clarify/simplify anything.
You guys are the best! Thanks in advance!
I am trying to set up a spreadsheet to fill in time slots based on day and time information.
There are two sheets in the workbook (Calendar and Log)
Here is how I have it set up:
The name of this sheet is Calendar
A | B | C | |
---|---|---|---|
1 | Wednesday (August 19, 2020) | Thursday (August 20, 2020) | |
2 | 900 AM | ||
3 | 940 AM | ||
4 | 1020 AM | ||
5 | 1100 AM | ||
6 | 1140 AM |
The name of this sheet is Log
A | B | C | D | E | |
---|---|---|---|---|---|
1 | Family Name | Phone Number | Scheduled Day | Scheduled Time | |
2 | Smith | 619-555-7600 | Wednesday (August 19, 2020) | 1020 AM - 1100 AM | |
3 | Jones | 619-555-2432 | Wednesday (August 19, 2020) | 900 AM - 940 AM | |
4 | Johnson | 600-354-8434 | Thursday (August 20, 2020) | 900 AM - 940 AM | |
5 | Wilkins | 685-879-4546 | Wednesday (August 19, 2020) | 940 AM - 1020 AM | |
6 | Cortez | 619-856-9952 | Thursday (August 20, 2020) | 1140 AM - 1220 PM |
I would like the Calendar sheet to fill in the correct cells of the scheduled appointments, based on the data found in the Log sheet.
Basically, given the data that is currently in the Log sheet, the Calendar sheet should end up looking like this:
A | B | C | |
---|---|---|---|
1 | Wednesday (August 19, 2020) | Thursday (August 20, 2020) | |
2 | 900 AM | Jones 619-555-2432 | Johnson 600-354-8434 |
3 | 940 AM | Wilkins 685-879-4546 | |
4 | 1020 AM | Smith 619-555-7600 | |
5 | 1100 AM | ||
6 | 1140 AM | Cortez 619-856-9952 |
Is there some sort of IF, LOOKUP or MATCH function that I can use in the cells of the Calendar sheet?
I tried using various mixtures of LOOKUP statements, AND statements, and IF statements, but it quickly became really complicated.
The workbook cannot be macro-enabled, so I am looking for a NON-VBA solution.
I hope this makes sense. Let me know if I need to clarify/simplify anything.
You guys are the best! Thanks in advance!