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: 
daniel1990xyz
Contributor III
Contributor III

qlikview set analysis / get associated value of min value of each dimensions

Hello together,

I need help regarding a qlikview issue.

I have created a chart / pivot table which groups my data by there "GradParentID" (Dimension). When the dimension is expanded the correct "ticket type" will be shown. My issue is, when the dimension is collapsed I would like to show from the lowest "caseID" the related "Ticket Type". But I am not able to make this working.

I have tried it for example with "FirstSortedValue(TicketType, aggr(Min(caseid),GrandParentID))" in the definition of the expression but the result is not as I want.

I hope I have explained it clearly. I think the attachment will help.

Thank you very much for any help and suggestions.

Many greetings from Germany

Daniel

IssueExplanation.png

3 Replies
maxgro
MVP
MVP

maybe

FirstSortedValue(Ticketart, -caseid)

Kushal_Chawda

try,

if( dimensionality()=1, FirstSortedValue(TicketType, aggr(Min(caseid),GrandParentID)),Ticketart)

daniel1990xyz
Contributor III
Contributor III
Author

Thank you for your suggestions. Unfortunately both are not working as needed. In both ways the script return the ticket type which is the first by alphabetical order from the dimension.