Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

set analysis

hey all hope you can help my problem is the following:

User Renewal DateRM Party
ACHARBELXC2/1/20161
ACHARBELXC7/1/20162
ACHARBELXC7/1/20161
ACHARBELXC5/1/20181
ACHARBELXC10/1/20151
ACHARBELXC10/1/20152
ACHARBELXC9/1/20151
ACHARBELXC9/1/20162
ACHARBELXC9/1/20151
ACHARBELXC9/1/20152
ACHARBELXC9/1/20152
ACHARBELXC1/1/20201
ACHARBELXC11/1/20161
ACHARBELXC1/1/20171
ACHARBELXC12/1/20161
ACHARBELXC11/1/20151
ACHARBELXC 1
ACHARBELXC11/1/20151
ACHARBELXC10/1/20151
ACHARBELXC11/1/20152

Renewal Date type  is number i need to count the Renewal Date > today() and ofcaurse i dont want to count the empty field

Count( {<Renewal Date > today()>}Renewal Date)

how can i wirte it in a correct way please help,

4 Replies
Anonymous
Not applicable

first you need to load your date column as date

Date(]Renewal Date]) as [Renewal Date]

then

if (len([Renewal Date] )>0,count({<[Renewal Date]>={Today(0)}>}[Renewal Date]))

Thanks

BKC

PrashantSangle

Hi,

try below

Count( {<[Renewal Date] ={">(=today())"}>}Renewal Date)

Note: carefull with date format

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
PrashantSangle

Hi,

USe distinct if you need distinct Count

Count( {<[Renewal Date] ={">(=today())"}>}DISTINCT [Renewal Date])

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
prajapatiamar38
Creator II
Creator II

Hi..

Please find the attached qvw below.

Hope this will help you.

Thanks