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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem with aggregation

Hi, I have a source table as presented below :

PortfolioNodeTaskDate
CommercialProject 1A12-11-12
CommercialProject 1B10-05-13
CommercialProject 2A15-12-12
FinancialProject 3A23-04-11
FinancialProject 4A22-01-10
FinancialProject 4B11-08-14

now i want to create this tabke :

PortfolioNodeDate
CommercialProject 112-11-12

Commercial

Project 215-12-12
FinancialProject 323-04-11
FinancialProject 422-01-10

As you can see I want to assign just one date to each Node - date from Task 'A'. I don't have any idea how to solve that. I can't just use if(Task='A', Date) and hide null values because i have to do similar thing in another column. Any idea ?

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

If you do this as a Pivot Table, you can use Portfolio and Node as dimensions, and

     Date(Min( {$<Task={'A'}>} Date))

as expression.

HIC

View solution in original post

2 Replies
hic
Former Employee
Former Employee

If you do this as a Pivot Table, you can use Portfolio and Node as dimensions, and

     Date(Min( {$<Task={'A'}>} Date))

as expression.

HIC

pradnyat
Creator
Creator

Hi,

Please find the attached file for the issue.

Hope this will help you...!