Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
Hi @heberpower ,
Believe that there is no option directly for this as there is for distinct try the following:
See code below for a simple test:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUXJOLDFUitVB4zghc5whHCMCHBdkjit2TiwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Values = _t, Cat = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Values", type text}, {"Cat", type text}}), #"Grouped Rows" = Table.Group(#"Changed Type", {"Values"}, {{"Count", each Table.RowCount(_), type number}}), #"Merged Queries" = Table.NestedJoin(#"Changed Type", {"Values"}, #"Grouped Rows", {"Values"}, "Grouped Rows", JoinKind.LeftOuter), #"Expanded Grouped Rows" = Table.ExpandTableColumn(#"Merged Queries", "Grouped Rows", {"Count"}, {"Count"}), #"Filtered Rows" = Table.SelectRows(#"Expanded Grouped Rows", each ([Count] <> 1)), #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Count"}) in #"Removed Columns"
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @heberpower ,
Believe that there is no option directly for this as there is for distinct try the following:
See code below for a simple test:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUXJOLDFUitVB4zghc5whHCMCHBdkjit2TiwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Values = _t, Cat = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Values", type text}, {"Cat", type text}}), #"Grouped Rows" = Table.Group(#"Changed Type", {"Values"}, {{"Count", each Table.RowCount(_), type number}}), #"Merged Queries" = Table.NestedJoin(#"Changed Type", {"Values"}, #"Grouped Rows", {"Values"}, "Grouped Rows", JoinKind.LeftOuter), #"Expanded Grouped Rows" = Table.ExpandTableColumn(#"Merged Queries", "Grouped Rows", {"Count"}, {"Count"}), #"Filtered Rows" = Table.SelectRows(#"Expanded Grouped Rows", each ([Count] <> 1)), #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Count"}) in #"Removed Columns"
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português