- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove some records from the table
I am having some troubles accomplishing following. If i have same id but the countries are different I want to keep country that is not Canada.
I have table
code | country |
11111 | Canada |
11111 | Albania |
22222 | Canada |
33333 | Canada |
33333 | Belgium |
33333 | Canada |
33333 | Belgium |
44444 | Canada |
44444 | Canada |
44444 | Canada |
And I need to get here. How would I do this?
code | country |
11111 | Albania |
22222 | Canada |
33333 | Belgium |
44444 | Canada |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Se this solution
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMgQBJR0l58S8xJREpVgdhJBjTlJiXiZEzAgEUJUZgwB2IafUnPTM0lxSlJmAAKoyIoRiAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [code = _t, country = _t]),
#"Filtered Rows" = Table.SelectRows(Source, each ([country] <> "Canada"))&Source,
#"Removed Duplicates" = Table.Distinct(#"Filtered Rows", {"code"})
in
#"Removed Duplicates"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @stribor45 ,
The answer provided by @Omid_Motamedise @AlienSx has resolved your issue? If so, kindly mark the helpful reply as the accepted solution. This will help other community members with similar concerns find solutions more efficiently.
Thank you for your cooperation!"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Se this solution
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMgQBJR0l58S8xJREpVgdhJBjTlJiXiZEzAgEUJUZgwB2IafUnPTM0lxSlJmAAKoyIoRiAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [code = _t, country = _t]),
#"Filtered Rows" = Table.SelectRows(Source, each ([country] <> "Canada"))&Source,
#"Removed Duplicates" = Table.Distinct(#"Filtered Rows", {"code"})
in
#"Removed Duplicates"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @stribor45 ,
The answer provided by @Omid_Motamedise @AlienSx has resolved your issue? If so, kindly mark the helpful reply as the accepted solution. This will help other community members with similar concerns find solutions more efficiently.
Thank you for your cooperation!"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
can this be adjusted so instead of removing the records just say no if its to be removed and yes if it is to be kept
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Table.Group(Source, "code", {"country", (x) => List.Skip(x[country], (c) => c = "Canada"){0}? ?? "Canada"})
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Works great. what does this code do
{0}? ?? "Canada"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
?: The item-access-expression also supports the form x{y}?
, which returns null
when position (or match) y
does not exist in list or table x
. If there are multiple matches for y
, an error is still raised.
?? : Coalesce operator

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-29-2024 09:40 AM | |||
06-06-2024 10:15 AM | |||
05-13-2024 11:10 PM | |||
10-04-2023 11:50 PM | |||
08-20-2024 11:47 PM |
User | Count |
---|---|
33 | |
18 | |
14 | |
11 | |
10 |