Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to display only Projects w/o any Actual hours associated with them.

I have two tables, one that has Project Data: Name, PorjectID, StartDate, EndDate... And the other with ActualHours for the time period of the Porject.

I am looking to display only the Projects with no ActualHours in an Audit page.

I am thinking I need to load the table and add up all of the ActualHours and then do a conditional on the total to only display ones with 0.0 as their total?

Just not sure how to do that.

1 Solution

Accepted Solutions
Not applicable
Author

Try this !

I think there's a way to show what you're expecting with the aggr function.

I'm gonna see 😉

EDIT : You can get the values by creating a list box, <Expression>

"=if(isnull(Achieved),Name)"

View solution in original post

2 Replies
Not applicable
Author

Try this !

I think there's a way to show what you're expecting with the aggr function.

I'm gonna see 😉

EDIT : You can get the values by creating a list box, <Expression>

"=if(isnull(Achieved),Name)"

Not applicable
Author

Based on the assumption that ProjectID is a unique key you could put it as dimension and then have one of the fields in the table as an expression. In that expression you do =if(ActualHours='',StartDate). Then only projects without ActualHours related to it should show up in the table.