Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
rcandeo
Creator III
Creator III

Set Analysis with FirstSortedValue

In this application I wanna show for each Principal and Subcategory, which is my last Visit and the avg of the values of this visit.

The problem is that my expression is not working properly.

In Box 1: Last Visit is the calculation that is not working.

VISIT calculation is showing correctly, but Last Visit is calculating the average for all Visits, and should calculate only the AVG for the Visit that appears on the table. On this example should be 0.

Last Visit 2 is supppose to be the same calculation with the first $ in the right place, but is doesn´t work showing this null value.

Box 2 is only a simple AVG calculation. I expect to see 3 lines, one for each VISIT (SCREENING, DAY 1/RCP, DAY 85/RCP), but is only showing for SCREENING cause the others are 0. I tried to show all values but shows me a lot of null lines and I don´t know why.

Box 3 is the complete data

Anyone can explain me how to fix this Last Visit Calculation?

Mine is avg(${<VISIT={$(=FirstSortedValue(DISTINCT VISIT,-Date))}>} Value)

firstsortedvalue.jpg

1 Solution

Accepted Solutions
sunny_talwar

Try this:

Avg(Aggr(If(FirstSortedValue(TOTAL <Principal, QSSCAT> DISTINCT VISIT, -Date) = VISIT, Avg(Value)), Principal, QSSCAT, VISIT))

View solution in original post

13 Replies
vinieme12
Champion III
Champion III

Your Date field is a Text, can't use FirstSortedValue with that, can you post the excel workbook as well

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
MK_QSL
MVP
MVP

May be try this..

Avg({<VISIT = {"$(=FirstSortedValue(DISTINCT VISIT,-Date))"}>}Value)

MK_QSL
MVP
MVP

Box 2

Go to presentation tab and untick suppress zero values

rcandeo
Creator III
Creator III
Author

I changed to date and nothing works now. It should work with date or only number?

vinieme12
Champion III
Champion III

remove the DISTINCT Keyword , i haven't tested this though

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
sunny_talwar

May be like attached?

sunny_talwar

1st Box's expression needs single quotes

Avg({$<VISIT={'$(=FirstSortedValue(DISTINCT VISIT,-Date))'}>} Value)

2nd Box's expression

Avg(Value)+Avg(0.00000000000000000000000001)

and change the number tab to show up until 8 decimals

Capture.PNG

vinieme12
Champion III
Champion III

This Also Works

VISIT =MaxString({<Date = {'$(=MIN(Date))'}>} VISIT)

Max({<Date = {'$(=MIN(Date))'}>} Value)

MaxString({<Date = {'$(=MIN(Date))'}>} Date)

AVG({<Date = {'$(=MIN(Date))'}>} Value)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
rcandeo
Creator III
Creator III
Author

Sorry but it is not working correct for all cases. See again the image.

Box 1, first line. 250 is the average for All visits in Ambulation, and should be the average for only Visit DAY 85/RCP, that is 407.5

Application attached again

firstsortedvalue.jpg