Try.............................
1] Unique list with Conditions : if Number =Pc(Amount) =Date are same, then remove the Duplicate.
2] In F3, copied across and down :
=IFERROR(INDEX(A:A,AGGREGATE(15,6,ROW(A$3:A$7)/(COUNTIFS($G$2:$G2,$B$3:$B$7,$H$2:$H2,$C$3:$C$7,$I$2:$I2,$D$3:$D$7)=0),1)),"")
Regards
Bosco
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"CUSTOMER NAME", type text}, {"AMOUNT", type number}, {"Number", type any}, {" DATE", type datetime}}),
#"Removed Duplicates" = Table.Distinct(#"Changed Type", {"AMOUNT", "Number"})
in
#"Removed Duplicates"
Hi,
If you can go with PQ:
Convert the data into Excel Table
Go to Data > Get & Transform >
From Table > Select your columns Amount and Number >
Go to Remove Rows > Remove Duplicates > Close & Load
Code:let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Changed Type" = Table.TransformColumnTypes(Source,{{"CUSTOMER NAME", type text}, {"AMOUNT", type number}, {"Number", type any}, {" DATE", type datetime}}), #"Removed Duplicates" = Table.Distinct(#"Changed Type", {"AMOUNT", "Number"}) in #"Removed Duplicates"
Regards,
Hello Ushaanu,Thank you for your response actually my raw data in 7 lacs rows . the formula not working on it. any other option .it will grate help for me.
Thanks
Anu
Hi,Hello Ushaanu,
What part of Bosco_Yip formula not working? I have tried it and it works. You ask if Column C and Column D match then remove duplicate(s). Can you elaborate more on what the problem is?
Regards
Chief Ace
... actually my raw data in 7 lacs rows . the formula not working on it. any other option ....