I have a dataset with column like Country, City, StudentName, StudentScore and ScaledStudentScore(calculated)
I am able to create calculated fields to calculate the Mean using Avg, Standard Deviation using stdevpOver(StudentScore,[Country, City]) and Z-Score in a pivot table with rows [Country, City, StudentName] and values [Mean, StandardDeviatuon, Z-score]
My ultimate goal , is to sort by the Z-score ( generated to the partition level of [Country,City] ) only by [Country and StudentName]
I tried using “Pre_filter” in the Standard Deviation calculated fields but it won’t allow me due to the Operand ( ScaledStudentScore is aggregated )
And if don’t have City in the pivot table rows then the table is not visible due to the missing details where City is part of the calculated field.
Can this be achieved within Quicksight Analysis without modifying the dataset ? Thanks