>Pierre - can you clarify what you mean by 'store the time' ?
Litterally : do you want IQ to record the time (hh:mm:ss) of the event, yes or no ?
=================
I don't know but none of these date "tricks" work (well, they work, but only if I manually enter the date)... I must be doing something wrong.
I tried the <format>Short Date</format> in options, together with =int(now()) (or int(now)) but I always end up with dates ending withoo:oo:oo when they're calculated using functions.
here's an example of one my functions (.. I know, not great) :
Function DueDate_EQ_TaskActEnd( duedate,TaskActEnd ) ' if isnull(DueDate) then DueDate_EQ_TaskActEnd = TaskActEnd elseif isnull(TaskActEnd) then DueDate_EQ_TaskActEnd = duedate else DueDate_EQ_TaskActEnd = duedate end if end function
I tried (but doesn't work at all) :
Function DueDate_EQ_TaskActEnd( duedate,TaskActEnd ) ' if isnull(DueDate) then DueDate_EQ_TaskActEnd = int(TaskActEnd) elseif isnull(TaskActEnd) then DueDate_EQ_TaskActEnd = int(duedate) else DueDate_EQ_TaskActEnd = int(duedate) end if end function
This kind of inconsistency is the kind of thing that makes me go absolutely NUTZ when working w IQ (which I do every day).
As you say, at the very least, IQ MUST have the courtesy to inform users what to expect.
I don't know what you do for a living (info not important) but I'm retired so I sometimes have time to waste & play around but if I were in a work environment, I would find this kind of thing absolutely unacceptable.
If Pierre envisions IQ as a program that is customized & set up for various firms where there is limited input from employees, that's one thing but if he envisions IQ in a broader market, I think he must make some moves to make IQ more intuitive, consistent & informative (error msgs, warnings, instructions).
Even much of the manual -- with all the work that has gone into it by Keith, Tom, you & others -- is still a mystery to me because it doesn't take users thru a process step by step. It assumes too much & will ignore simple things like Main Menu > Tools > Options before getting down to the option (this is probably an exaggeration but I hope my message is clear)
And if Pierre & others read this I hope everyone is clear about one thing: this is a great program, Pierre is extremely supportive, I love this program, I want it to succeed..... in my lifetime.
Comments
I tried the <format>Short Date</format> in options, together with =int(now()) (or int(now)) but I always end up with dates ending with oo:oo:oo when they're calculated using functions.
here's an example of one my functions (.. I know, not great) :
if isnull(DueDate) then
DueDate_EQ_TaskActEnd = TaskActEnd
elseif isnull(TaskActEnd) then
DueDate_EQ_TaskActEnd = duedate
else
DueDate_EQ_TaskActEnd = duedate
end if
end function
if isnull(DueDate) then
DueDate_EQ_TaskActEnd = int(TaskActEnd)
elseif isnull(TaskActEnd) then
DueDate_EQ_TaskActEnd = int(duedate)
else
DueDate_EQ_TaskActEnd = int(duedate)
end if
end function