Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
danielnevitt
Creator
Creator

Expression help

Hi,

I have the following expression that is unfortunately not working.

Does anyone have any idea what the issue might be?

=Sum({<DTLS_PAYMENT_RECEIPT_IND={'R'},ReportDate={"$(DATE#(FirstWorkDate(today(),2)'DD/MM/YYYY')"}>}DTLS_AMOUNT)

Thanks,

Daniel

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Try

SUM({<

     DTLS_PAYMENT_RECEIPT_IND={'R'},

     ReportDate = {"$(=Date(FirstWorkDate(Today(),2),'DD/MM/YYYY'))"}    

>}DTLS_AMOUNT)

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Try

SUM({<

     DTLS_PAYMENT_RECEIPT_IND={'R'},

     ReportDate = {"$(=Date(FirstWorkDate(Today(),2),'DD/MM/YYYY'))"}    

>}DTLS_AMOUNT)

danielnevitt
Creator
Creator
Author

Thanks for your help