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

How to neglect two months data based on condition

In excel i have date data from Oct-16 to Jun-17.

In Dashboard UI part I just want to show data from Dec-16 to Jun-17, how to achieve this.

1 Solution

Accepted Solutions
rahulpawarb
Specialist III
Specialist III

Hello Shikha,

Below are sample solutions (please make necessary changes, if needed):

1. Script level

Where Date >= '12-01-2016'

2. KPI level

Sum({<Date={">= $(=Date#('12-01-2017', 'MM-DD-YYYY')) "}>}SalesAmount)

Regards!

Rahul Pawar

View solution in original post

4 Replies
awhitfield
Partner - Champion
Partner - Champion

Either limit the load so the values aren't imported OR use set analysis so they are not displayed.

Andy

mangalsk
Creator III
Creator III

You need to exclude in script using where exists or not exists as per data available

shiveshsingh
Master
Master

You can use set analyis for excluding the months

rahulpawarb
Specialist III
Specialist III

Hello Shikha,

Below are sample solutions (please make necessary changes, if needed):

1. Script level

Where Date >= '12-01-2016'

2. KPI level

Sum({<Date={">= $(=Date#('12-01-2017', 'MM-DD-YYYY')) "}>}SalesAmount)

Regards!

Rahul Pawar