Hi -
I am looking to do the following:
* Create a button that will send the user to another sheet with details.
the measure is called "kpi-store-name"
Note: the measure for the "kpi-store-name" is
var a = SUMMARIZE(filter('tbl_abc,[OpenOrders] in {"Y"}),[StoreDesc],"ct",COUNTROWS('tbl_abc'))
return CONCATENATEX(TOPN(1,a,[ct]),[StoreDesc])
* This measure works and returns the store name with the greatest number of OpenOrders
I would like for the user to click the button to see the specific orders
Any thoughts ?