Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using function today () in set analysis?

Good Afternoon,

I wonder how can I use the function analysis on set today?

I need to return in a text object the delinquent amount until the present day.



Ex: sum ({<[Due Date] = {$ (= Today ())}>} [Pending Value])



Already Thank you!

1 Solution

Accepted Solutions
Janneke
Creator
Creator

Hi Joao,

Have you tried

=Sum({<[Due Date]={'<=$(=Date(Today()))'}>}[Pending Value])

?

Regards, Janneke.

View solution in original post

8 Replies
srinivasa1
Creator II
Creator II

Try as below

sum({<({<[Due Date]={'$(=$(=(Today()) )'}>}[Pending Value]))

For untill today you can write as below

sum({<({<[Due Date]<={'$(=$(=(Today()) )'}>}[Pending Value]))

Not applicable
Author

Hello,
tested and did not return anything!

Att,

João Henrique

Not applicable
Author

HI ,

       Use this code .

sum ({<[Due Date] = {'$ (= Today ())'}>} [Pending Value])

Please let me know if there is anything.

MayilVahanan

HI

Try like this

sum ({<[Due Date] = {"<=$ (= Today ())"}>} [Pending Value])

And make sure, both [due date] and today() are in same format

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Anonymous
Not applicable
Author

This should work:

sum ({<[Due Date] = {"$ (= date(Today ()))"}>} [Pending Value])

Regards,

Michael

Not applicable
Author

Thank you all for the help...

Att,

João Henrique

Janneke
Creator
Creator

Hi Joao,

Have you tried

=Sum({<[Due Date]={'<=$(=Date(Today()))'}>}[Pending Value])

?

Regards, Janneke.

Not applicable
Author

Thanks!