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 323
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

Tryโ€ฆ
[_THISROW] = MAXROW(โ€œTripโ€, โ€œ_ROWNUMBERโ€,
AND(
[_THISROW].[Customer] = [Customer],
EOMONTH([Date],0)=EOMONTH([_THISROW].[Date],0)
)
)

wowโ€ฆPerfect for my problem

Youโ€™re welcome

Hi,

Could you please help me to sort the month correctly.

I have extracted the month and year from date column based on the below formula

TEXT([Complaint Closed Date],โ€œmmmm-yyyyโ€)

3X_6_3_63cb4d62983bbcb496006ae651b9e914987658e1.png

Because the sort is made as a string, you need to write it like 2020-01-January

I have created for monthly reports but while inserting this formula its showing date wise. Please help!

Screenshot_20201012-171047_AppSheet|225x500

Sorry, for some reason I have missed your reply. The format 2020-Wed-January wonโ€™t work because after the order is sorted with the 2020 your view start the ordering from the first letter โ€œWโ€.

its ok,

i have spited in to year and month, Then grouped .

Top Labels in this Space