Forum Discussion
shelbsassy
Resolver I
9 years agoEliminating 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...
- 9 years ago
Hi shelbsassy
You could try something like this?
TrendCalcs = SUMMARIZE( FILTER( Dates, 'Dates'[FirstDateC]<> BLANK() ), 'Dates'[FirstDateC], Dates[MaxPerMonth] )
Phil_Seamark
Microsoft Employee
9 years agoHi shelbsassy
You could try something like this?
TrendCalcs = SUMMARIZE(
FILTER(
Dates,
'Dates'[FirstDateC]<> BLANK()
),
'Dates'[FirstDateC],
Dates[MaxPerMonth]
)shelbsassy
Resolver I
9 years agoOMG Worked beautifully the first try! Thank you so much!