Forum Discussion

shelbsassy's avatar
shelbsassy
Resolver I
9 years ago
Solved

Eliminating null or duplicate rows in a table calculated from summarize function

I created a table to get the distinct irst date of the month and the Max Service Date (from the data load) from  TrendCalcs = SUMMARIZE(Dates,Dates[FirstDateC],Dates[MaxPerMonth]) and I added a colu...
  • Phil_Seamark's avatar
    9 years ago

    Hi shelbsassy

     

    You could try something like this?

     

    TrendCalcs = SUMMARIZE(
            FILTER(
                Dates,
                'Dates'[FirstDateC]<> BLANK()
                ),
                'Dates'[FirstDateC],
                Dates[MaxPerMonth]
                )