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: 
smilingjohn
Specialist
Specialist

Dt

Hi ALl

please find my QVW attached and Excel data 

I need to show a table where the release numbers should show current month releases and release number(Fututre ReleaseNUmber) greater than  than current month  .

..Release number is like 17.1, 17.2...and so on which i have converted to month year date ....


My requirement is

Display current release and all future releases

Current Release = Current date between Release Start date and End Date

Future Release = Release start date greater than current date

Can please somone suggest me how do i show it ...

Thanks in advance

1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

Chart 1 to show current release

Current Release = Current date between Release Start date and End Date

     if(StartDate>today() and EndDate>today(),1,0)

Chart 2 to show future release

Future Release = Release start date greater than current date

     if(Release >today() ,1,0)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

Chart 1 to show current release

Current Release = Current date between Release Start date and End Date

     if(StartDate>today() and EndDate>today(),1,0)

Chart 2 to show future release

Future Release = Release start date greater than current date

     if(Release >today() ,1,0)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
pathiqvd
Creator III
Creator III

I think u asked

Current Release = Current date between Release Start date and End Date,

if(StartDate<today() and EndDate>today(),1,0) maybe this is correct