Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression...

Hi all,

I am having a table with 2 dimensions execution date and status and I wan count of only those materials which are present in all these execution dates.

5 Replies
PrashantSangle


Hi,

Can you explain little bit more.

Like Status is always present even if your execution date is not present?

If yes,

Then try like this,

count(status={"=not isnull(execution_Date)"}materials)

It is better if you share sample data.

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 🙂
Not applicable
Author

please find attached sample data.

PrashantSangle


Hi,

I have checked your sample data.

How you calculating status as you mention in your question?

I did not find any materials with our execution 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 🙂
MK_QSL
MVP
MVP

Count(Distinct Material)

SunilChauhan
Champion II
Champion II

in script itself

you could use if(len(Material)>0,Material,'Blank')

and in formula

Count(Distinct If(Material<>'Blank',Material))


and dimesion you could take status and executiondate


hope this helps

Sunil Chauhan