Hello,
I need a formula that counts from 1 to whatever until the end of the month. Then when the month starts over the count will reset. I have a date column called $Date_for_ID. The column that the number will increment is called $Count.
So for example it will look like this:
June
1
2
3
4
Then in July it starts over:
1
2
3
4 and so forth.
I have tried all sorts of python code. This one so far works but the output I get is 1. It does not increment up.
from datetime import datetime
current_month = datetime.now().month
count = (current_month - $Date_for_ID.month) * 99 + 1
count
Any help would be appreciated.