how to display max, min, median, and average from tableau
问题 on that picture, that is user_id and the right side are the frequency of transaction for each users, how to display the minimum, max, median, and average for the frequency transaction of this users? what calculation do i need to made for this kind of problems? so the median max min and average will appear 回答1: Check this article about Window Functions For the min use WINDOW_MIN(COUNTD([Order Id])) For the max use WINDOW_MAX, etc 来源: https://stackoverflow.com/questions/64816739/how-to-display