Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
rabbani_sk
Contributor III
Contributor III

Q???

Hi All,

My actual data values in a strgt Table is as follows,

ItemNo    [Production  Date]     [Ordered Qty]       [Prod. Qty]

S007          10/09/2011                 28                          2

S007          17/08/2011                 28                       -12

S007          17/08/2011                 28                         -1

S007          17/08/2011                 28                         -2

S007          17/08/2011                 28                         -1

My requirement is , Need to filter the [Production Date] with 'Maximum date' and at the same time need to sum the [Prod. Qty] , my final Solution should  be as follows

ItemNo    [Production  Date]     [Ordered Qty]       [Prod. Qty]

S007          10/09/2011                 28                          -16

1 Reply
swuehl
MVP
MVP

Maybe try using ItemNo as dimension and

=Date(max([Production Date]))

=only([Ordered Qty])

=sum([Prod. Qty])

as expressions