Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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