Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Remove same occurrence if a value is found

Hi there,

 

I was trying to figure out for a whole day but no result so far.

 

The idea is when Login txn is posted for each User, any txn that comes with the same DateTime should not be acknowledge as it is just a background noise. If there is another same timestamp but doesn't have Login txn at the same time, this should still be considered.

 

UserTxnDateTime
ALogin1/01/2020 10:00
AView1/01/2020 10:00 -- to remove
ADelete1/01/2020 10:00 -- to remove
AView1/01/2020 10:10 -- to keep
AView1/01/2020 10:10 -- to keep
APayment1/01/2020 10:11
BLogin2/01/2020 9:00
BDelete2/01/2020 9:00 -- to remove
BPayment2/01/2020 9:05

 

My desire outcome would be : Those highlighted in Red should be removed.

UserTxnDateTime
ALogin1/01/2020 10:00
AView1/01/2020 10:10
AView1/01/2020 10:10
APayment1/01/2020 10:11
BLogin2/01/2020 9:00
BPayment2/01/2020 9:05

 

Any suggestion would be appreciated. Thank you

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

Please see the attached file with a solution.

 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Here's the M code that does it. Paste into Power Query's Advanced Editor and test it with your datasets.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUfLJT8/MA9KG+gaG+kYGRgYKhgZWBgZKsToQ+bDM1HI80i6pOaklqSTqNyRaOiCxMjc1rwRDhSFYhROS+43g8pYw652Q3YdDHmEBigJTpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [User = _t, Txn = _t, DateTime = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"User", type text}, {"Txn", type text}, {"DateTime", type datetime}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Keep Row?", 
        each
            if Text.Lower([Txn]) = "login" then 
                true
            else
                Table.IsEmpty(
                    Table.SelectRows(
                        #"Changed Type",
                        (r) =>
                            r[User] = [User]
                            and r[DateTime] = [DateTime]
                            and Text.Lower(r[Txn]) = "login"
                    )
                )
    ),
    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Keep Row?", type logical}}),
    #"Filtered Rows" = Table.SelectRows(#"Changed Type1", each ([#"Keep Row?"] = true)),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Keep Row?"})
in
    #"Removed Columns"

 

Best

D

Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

Please see the attached file with a solution.

 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

Anonymous
Not applicable

@Mariusz thank you. It works perfectly. 

@Mariusz 

Table.Group(#"Changed Type", {"User", "DateTime"}, {{"Txn", each if List.Contains( _[Txn], "Login" ) then { "Login" } else _[Txn], type list }})

That is super slick!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors