I've tried everything and the results always come up to "Undefined Nan" error message
SELECT 'Key',T1.'Due',
FORMATWIKI(SUM('Summary')) AS 'Summary 2',
FORMATWIKI(SUM("*" + 'Summary' + "*" + ", Due " + 'Due')) AS 'Summary',
FORMATWIKI(SUM('Due' + 30)) AS 'added',
FORMATWIKI(SUM('Due')) AS 'Due Date',
FORMATWIKI(SUM('Due')) AS 'Due Date 2',
Here are two options I've tried:
I don't understand what I'm doing wrong and I've spent way to long trying to resolve this. :-(
Update: If I just write the following as standalone, it works. However, I am not allowed to add any other lines with errors.
SELECT 'Key',
FORMATDATE(DATEADD(day, -30, Due)) AS BeforeDate
FROM T1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.