Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
Hi Joao,
Have you tried
=Sum({<[Due Date]={'<=$(=Date(Today()))'}>}[Pending Value])
?
Regards, Janneke.
Try as below
sum({<({<[Due Date]={'$(=$(=(Today()) )'}>}[Pending Value]))
For untill today you can write as below
sum({<({<[Due Date]<={'$(=$(=(Today()) )'}>}[Pending Value]))
Hello,
tested and did not return anything!
Att,
João Henrique
HI ,
Use this code .
sum ({<[Due Date] = {'$ (= Today ())'}>} [Pending Value])
Please let me know if there is anything.
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
This should work:
sum ({<[Due Date] = {"$ (= date(Today ()))"}>} [Pending Value])
Regards,
Michael
Thank you all for the help...
Att,
João Henrique
Hi Joao,
Have you tried
=Sum({<[Due Date]={'<=$(=Date(Today()))'}>}[Pending Value])
?
Regards, Janneke.
Thanks!