Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Define/categorize the ID's based on date History from current month. If ID is not available means categorize new, if it's already available categorize by year.
Not sure, I followed you. Can you clear little in detail
find thecurrent month ID's in the existing data, if not cateogrize as New ID
Can you share excel file and expected result
Can't you just define current month and current year in variables, something like:
vCurrentMonth= Month(Today())
vCurrentYear= Year(Today())
and then use these in calculations with your date field to determine difference between the values in your data and current year and month,
for example, you could use (vCurrentYear*12)+vCurrentMonth to create a field where the value increases by 1 each month... and then compare this to ({Year in your data]*12)+[month in your data]
so for any given month and year this would tell you the difference from current month and year