Forum Discussion
Anonymous
6 years agoNot 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 acknowle...
- 6 years ago
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
Mariusz
6 years agoCommunity 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
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- jdbuchanan716 years agoSuper User
Table.Group(#"Changed Type", {"User", "DateTime"}, {{"Txn", each if List.Contains( _[Txn], "Login" ) then { "Login" } else _[Txn], type list }})That is super slick!
- Anonymous6 years agoNot applicable
Mariusz thank you. It works perfectly.