Marcin
S.
BI Consultant, ETL
developer
Temat: Kalkulacja daty 'w ciagu m-ca'
Witam,mam 'logiczna formule' usera:
IF [Date] is within one month
THEN "Due within one month"
ELSE IF [Date] >= today THEN "Past Due Date"
ELSE "Not yet Due"
jego logike rozumiem tak:
IF Not IsNull({DATE_VALUE}) THEN
(
Local DateTimeVar tempDate:={DATE_VALUE};
if tempDate in Next30Days
then
("Due within one month")
Else if (tempDate<CurrentDateTime) Then
("Past Due Date")
Else
"Not yet Due"
)
ELSE " "
Czy moje zrozumienie jest poprawne, pozno jest i mam watpliwosci ;) ?