Forum Discussion
Task List that transfers to Calendar
- Sep 19, 2021
mendthefabric A couple of days ago another student asked a similar question. He/she chose to work with a typical Calendar template found on-line, with a monthly and a weekly view. Though, it only marked days that something was due, but it didn't specify what. I slightly modified that template to achieve just that and could dump your assignments into the modified template. The calendar views were filled instantly. No VBA needed.
Personally, I would never use this kind of template. It's full with "features" that make it difficult to adapt to ones specific needs. So, use it as it is and don't try to tinker with it too much. Take it, or leave it, I would say.
Oh, and since you tag your posting with "Office365", I assume that your Excel version supports the FILTER function. If not, you may disregard the attached workbook.
mendthefabric A couple of days ago another student asked a similar question. He/she chose to work with a typical Calendar template found on-line, with a monthly and a weekly view. Though, it only marked days that something was due, but it didn't specify what. I slightly modified that template to achieve just that and could dump your assignments into the modified template. The calendar views were filled instantly. No VBA needed.
Personally, I would never use this kind of template. It's full with "features" that make it difficult to adapt to ones specific needs. So, use it as it is and don't try to tinker with it too much. Take it, or leave it, I would say.
Oh, and since you tag your posting with "Office365", I assume that your Excel version supports the FILTER function. If not, you may disregard the attached workbook.
- jamilla1095Feb 28, 2024Copper ContributorI wonder is there a way of adding a year view added to the template that works in the same way as the month view and week view?
- peiyezhuFeb 29, 2024Bronze ContributorI convert excel sheet to .ics and import .ics file to android smartphone calendar which has both month and year view
- criley03Jan 30, 2023Copper Contributor
Is it possible to add the Class to this as well? So it might read
CLASS: Assignment
on the specific date in both month and week views? I have not programmed anything in years, and tried to add it in and am getting a syntax error.
- Riny_van_EekelenJan 31, 2023Platinum Contributor
criley03 Easiest would be to expand the table with a MERGED column where you concatenate the Assignment and Class columns into one. Then, in the Month and week views use Find&Replace.
Find what?
[[DESCRIPTION]:[DESCRIPTION]]
Replace with?
[[MERGED]:[MERGED]]
See attached.
- criley03Jan 31, 2023Copper ContributorThank you so much. Once I did some digging, I realized I what I was trying wasn't going to work. I picked up enough to follow along with what you are saying. It's exactly what I was looking for. Thank you!
- ashleycole24Sep 29, 2022Copper ContributorThis is awesome and exactly what I have been looking for, however when I enable editing, none of the assignments are filling in. I think it is because you are using a function that my version of Excel (2016) doesn't support but I am unable to see what that is. In the Monthly view, here is a copy/paste of one of the formulas. Please note the _xlfn. Would you be able to tell me what that is supposed to be?
Thank you!
=IFERROR(_xlfn.TEXTJOIN(REPT(CHAR(10),2),TRUE,_xlfn._xlws.FILTER(Assignments[[DESCRIPTION]:[DESCRIPTION]],Assignments[[DUE DATE1]:[DUE DATE1]]=(DATEVALUE(G14&"-"&MoMonth&"-"&MoYear)),"-")),"")- Riny_van_EekelenSep 30, 2022Platinum Contributor
ashleycole24 Indeed. The _xlfn prefix indicates that the TEXTJOIN and FILTER functions that are not available in 2016.
- RicheleneOct 27, 2021Copper Contributor
Riny_van_Eekelen Finally I found the exact answer that I am looking for? If there a formula to have task lists with due dates auto populate into an excel calendar? similarly to what you have done...
I ask because for work, we have a spread sheet similar to the task list with dates were documentation is due, our "tasks" are separated by different categories. It would be so much easier if we had a calendar to visualize when certain documentation is due based on that spreadsheet... SOS plz
- Riny_van_EekelenOct 27, 2021Platinum Contributor
Richelene Well, have you tried to adapt you task list to the format used in the template I uploaded earlier (HW cal.xlsx)? As mentioned, such templates are difficult to adapt to everyone's needs. So, in principle, you'll have to adapt to what the template offers you.
- mathetesSep 19, 2021Silver Contributor
Riny_van_Eekelen Great job, Riny. I knew @mendthefabric would be able to find the help she was looking for by posting this publicly. (She had sent me a private message with the same original question, and I referred her here.)
And I also appreciate your comments vis-a-vis the templates. In general those so often have bells and whistles that get in the way of helping the very people they're intended to help.
- mendthefabricSep 19, 2021Copper ContributorThis is actually perfect for what I need.
if I have another assignment, can i just add on to the bottom and it will sort it?- Riny_van_EekelenSep 19, 2021Platinum Contributor
mendthefabric Just add it at the bottom of the assignment table. It will expand automatically No need to sort if for the Calendar to work. But if you want to sort the list, just push the little arrow at the top of the DUE DATE column and choose the sort option you want.