Automate a mundane task

kat73

New Member
Joined
Mar 11, 2019
Messages
1
Hello all,

Hoping you can provide some help to a monthly task...

I have a table with a list of individuals with a last date of attendance in one column followed by the 12 months. I have provided an example below:


NameActual DateJanFebMarAprMayJunJulAugSepOct
X130/08/20181111111100
X2Cont.1111111111
X325/01/20181000000000
X4Cont.

<tbody>
</tbody>


What would be extremely helpful, would be to automate the monthly process (instead of me having to manually enter 1 for the last month they attended)
Some individuals do not have an actual end date (so is blank) as they are still attending so they will need a 1 going until Dec
Any guidance or ideas would be extremely helpful!

Kind regards,
Kat
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
try


Book1
ABCDEFGHIJKL
1NameActual DateJanFebMarAprMayJunJulAugSepOct
2X130/08/20181111111100
3X2Cont.1111111111
4X325/01/20181000000000
5X4Cont.1111111111
Sheet2
Cell Formulas
RangeFormula
C2=IF(ISNUMBER($B2),IF(MONTH($B2)>=MONTH(1&"/"&C$1),1,0),1)
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,184
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top