Forum Discussion
bernate
Helper III
2 years agoExclude 0 from MINX Result
Hello all, I'm trying to get the lowest sum sales value of all days in a month. So in the example below I want to display 5,759 as the value in a card, not 0. Here is the DAX formula I...
- 2 years ago
pls try this
= MINX( FILTER( SUMMARIZE('Sales Data','DateTable'[CalendarDt],"Total Sales",SUM('Sales Data'[Daily Sales])),[Total Sales]>0) ,[Total Sales])
Ahmedx
Super User
2 years agopls try this
= MINX( FILTER(
SUMMARIZE('Sales Data','DateTable'[CalendarDt],"Total Sales",SUM('Sales Data'[Daily Sales])),[Total Sales]>0)
,[Total Sales])bernate
Helper III
2 years agoThank you so much, I knew I was overlooking something and I completely forgot about the filter function.