Duplicate remove issue

Hi,

To create a slicer, I want to remove the duplicate customers on monthly basis, I have tried the below formula but the issue is it’s removing all duplicates not considering month. I have the same customer is different months but this formula not considering the month.

([_THISROW] = MAXROW(“Trip”, “_ROWNUMBER”, ([_THISROW].[Customer] = [Customer])))

3X_3_1_311ffb98e8eec49bb9883f573d3feedf21ca3c1d.jpeg

Could you please help me to resolve the issue?

Please note I have created VC for the month, Daily, etc and Sumif also

Solved Solved
0 8 329
1 ACCEPTED SOLUTION

Try…
[_THISROW] = MAXROW(“Trip”, “_ROWNUMBER”,
AND(
[_THISROW].[Customer] = [Customer],
EOMONTH([Date],0)=EOMONTH([_THISROW].[Date],0)
)
)

View solution in original post

8 REPLIES 8
Top Labels in this Space