Hi I am new to COGNOiSe and am seeking some help....
I have conditional formatting on a date field and an wanting to display different coloured text for data that is older than today.
In short, I need to know the coding for TODAY MINUS 1 or 2......
I know this is probably really easy, but I'm stumped.
Hi, if you're using SQL as DB you can try this
DateAdd(dd, DateDiff(dd,0,GetDate()-1), 0)
That doesn't help as I need to do within a boolean.
Is there something I can do around Today() minus 2?
Boolean Expression:
[YourQuery].[yourDateItem] < Today()
If your date item is in the past, then the condition is met, TRUE.
Thanks Rocky.
Being that I am in Australia and our warehouse is update with data from US this means I would need today's date minus 2 days, because of the data dely.
if using oracle, add a filter [time]<trunc(add_days({sysdate},-2),'dd'),
maybe work
Solution for the Variable Expression we started earlier, you can change date using this getup:
_add_days(date2timestamp(Today()), -1)
... Today is Nov 14, 2007 and it is returning Nov 13, 2007
So now the Variable Expression would be:
[YourQuery].[yourDateItem] < _add_days(date2timestamp(Today()), -1)
Thanks Rocky.
Now just have to wait for next data load to check if it's functional.