I'm trying to get the top 5 revenues from the column REVENUE in the Table SALES . I have tried this but it's not correct because the expression is suppose to return multiple columns .
TOP_N_REV = TOPN(5;FACT_SALES; MAX(FACT_SALES[REVENUE]) ; 0 )
Any ideas ?
Thank you