P PierremontQuaker03 Member Feb 17, 2026 #1 Hi, I downloaded this template, and am wanting to change the date to the current month and beyond (see calendar tab) - I cannot get the dates to work, any ideas? Thanks Attachments Task List by Month.xlsx Task List by Month.xlsx 93.9 KB · Views: 4
Hi, I downloaded this template, and am wanting to change the date to the current month and beyond (see calendar tab) - I cannot get the dates to work, any ideas? Thanks
herofox Active Member Feb 18, 2026 #2 Hello -Try This Attachments Task List by Month1.xlsx Task List by Month1.xlsx 94.5 KB · Views: 6
P PierremontQuaker03 Member Feb 18, 2026 #3 herofox said: Hello -Try This Click to expand... Thank you is it possible you can correct cell A1? - I am wanting to create a monthly calendar from February 2026 onwards
herofox said: Hello -Try This Click to expand... Thank you is it possible you can correct cell A1? - I am wanting to create a monthly calendar from February 2026 onwards
M MikeVol New Member Feb 18, 2026 #4 Insert in cell B2 (worksheet Calendar) next formula: Code: =DATE(P6,MATCH(P8,{"January","February","March","April","May","June","July","August","September","October","November","December"},0),1)
Insert in cell B2 (worksheet Calendar) next formula: Code: =DATE(P6,MATCH(P8,{"January","February","March","April","May","June","July","August","September","October","November","December"},0),1)
AliGW Well-Known Member Feb 19, 2026 #5 In B2: =DATE(P6,MONTH(DATEVALUE(P8&" 1")),1) or: =DATE(P6,MONTH(P8&0),1)
herofox Active Member Feb 19, 2026 #6 ok PierremontQuaker03Thanks Attachments Task List by Month2.xlsx Task List by Month2.xlsx 94.5 KB · Views: 3
AliGW Well-Known Member Feb 19, 2026 #7 @herofox You don't need that lookup list - see my post above yours.