I see the equations in today & tomorrow but I don't understand what drives them, i.e. what date is it related to?
What I want to do is be able to assign a DateDue to an item & have IQ automatically calculate that it is due tomorrow or this week or next week
Is this possible?
Comments
'-------------------------------------------
function isToday(dDate) ' this function returns True if the supplied date = today. Is used as part of GTD
if int(dDate) = int(now()) then isToday=true else isToday=false
end function
function isTomorrow(dDate) ' same as above, but returns True if the supplied date = tomorrow
if int(dDate) = int(now())+1 then isTomorrow=true else isTomorrow=false
end function
=isToday(DueDate)
And check Auto-update
=isTomorrow(DueDate)
And check Auto-update
AM:Today=isToday(DueDate) |
AM:Tomorrow=isTomorrow(DueDate) |
E:Today= |
E:Tomorrow=