Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
ekcres05
Contributor
Contributor

FIltering SAP-Data by date

Hi everybody, 

I am having some troubles connecting my tables from SAP because they are huge. Therefore i wanted to limit the entries. I have in SAP data since 2005 but we are interested only in data from 2023 till now. Is there a way I can limit the connection without much? I am kinda new to coding so if there is a solution without coding, it would be amazing. If coding is the only way, how could i do it? 

Thank you so much. 

Labels (5)
1 Solution

Accepted Solutions
dmac1971
Creator III
Creator III

Yes in your load script use the Where function.  Ie :

FROM Sap_Table
where Dept = 'Sales' And SalesDate > '1-1-2021';

View solution in original post

1 Reply
dmac1971
Creator III
Creator III

Yes in your load script use the Where function.  Ie :

FROM Sap_Table
where Dept = 'Sales' And SalesDate > '1-1-2021';