Folks, I have a feeling this should be simple. I want to calculate the number of days until a date. My plan was to create a variable for each date I want to calculate to and then another variable that calculates the number of days from now until each of the dates set in those already set variables.
eg.
date1 = 'mm-dd-yyyy'
date2 = 'mm-dd-yyyy'
daysToDate1 = date1-today
daysToDate2 = date2-today
I can’t figure out how to calculate the number of days. Can anyone help?