The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.