Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a dax query to get me the highest category in a table based on a measure, it is like the below..
Does anyone know a workaround I can put in my measure to avoid this from happening?
Solved! Go to Solution.
Hi,
Try this measure
Most Common Day = CONCATENATEX(TOPN(1,ALLNOBLANKROW(DimDates[Day_Name]),[Cases],DESC),DimDates[Day_Name],", ")
Hope this helps.
Hi,
Try this measure
Most Common Day = CONCATENATEX(TOPN(1,ALLNOBLANKROW(DimDates[Day_Name]),[Cases],DESC),DimDates[Day_Name],", ")
Hope this helps.