Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have a column in which the values are given as "list" and "record", I cannot pre filter it, the data is given me as such.
I would need to be able to filter out lists and records, how can i do that ?
I thought of making a custom column that gives if the line is a list or a record in text so i can filter out, if their a way to do it ?
Solved! Go to Solution.
Hi @Anonymous ,
Please refer to my code and sample.
Whole M Code:
let
Source = Table.Combine({Table, List, Record}),
#"Added Custom" = Table.AddColumn(Source, "Custom.1", each Table.SelectRows([Custom])[Column1]),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Custom.1"}),
#"Added Custom1" = Table.AddColumn(#"Removed Columns", "Table", each if
Table.ColumnCount([Custom]) <> Error.Record
then
"Table"
else
"Record"),
#"Added Custom2" = Table.AddColumn(#"Added Custom1", "List", each if
List.Count([Custom]) <> Error.Record
then
"List"
else
""),
#"Added Custom3" = Table.AddColumn(#"Added Custom2", "Record", each if
Record.ToList([Custom]) <> Error.Record
then
"Record"
else
""),
#"Replaced Errors" = Table.ReplaceErrorValues(#"Added Custom3", {{"Table", ""}}),
#"Replaced Errors1" = Table.ReplaceErrorValues(#"Replaced Errors", {{"List", ""}}),
#"Replaced Errors2" = Table.ReplaceErrorValues(#"Replaced Errors1", {{"Record", ""}}),
#"Added Custom4" = Table.AddColumn(#"Replaced Errors2", "Combine", each if [Table] = ""
then
if [List] = ""
then
[Record]
else
[List]
else
[Table])
in
#"Added Custom4"
Result is as below.
I think [Combine] column is the result you need.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Go to power query edtior and filter that data!
Proud to be a Super User!
I am already on power query, my problem is that i want to filter out the data but i cannot as power query refuses to consider lines showing as "List" and "Record" lines as filter targets
Hi @Anonymous ,
Please refer to my code and sample.
Whole M Code:
let
Source = Table.Combine({Table, List, Record}),
#"Added Custom" = Table.AddColumn(Source, "Custom.1", each Table.SelectRows([Custom])[Column1]),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Custom.1"}),
#"Added Custom1" = Table.AddColumn(#"Removed Columns", "Table", each if
Table.ColumnCount([Custom]) <> Error.Record
then
"Table"
else
"Record"),
#"Added Custom2" = Table.AddColumn(#"Added Custom1", "List", each if
List.Count([Custom]) <> Error.Record
then
"List"
else
""),
#"Added Custom3" = Table.AddColumn(#"Added Custom2", "Record", each if
Record.ToList([Custom]) <> Error.Record
then
"Record"
else
""),
#"Replaced Errors" = Table.ReplaceErrorValues(#"Added Custom3", {{"Table", ""}}),
#"Replaced Errors1" = Table.ReplaceErrorValues(#"Replaced Errors", {{"List", ""}}),
#"Replaced Errors2" = Table.ReplaceErrorValues(#"Replaced Errors1", {{"Record", ""}}),
#"Added Custom4" = Table.AddColumn(#"Replaced Errors2", "Combine", each if [Table] = ""
then
if [List] = ""
then
[Record]
else
[List]
else
[Table])
in
#"Added Custom4"
Result is as below.
I think [Combine] column is the result you need.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Question is not clear , if you can filter with custom column why cant you filter when the data is in the raw format. what is the business logic
Proud to be a Super User!
I cannot i do not have access to the raw data, it is given me as such via an api
Is there a function that would give something like "If column is a record type then "record", else "list" ?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
107 | |
98 | |
39 | |
34 |
User | Count |
---|---|
149 | |
121 | |
76 | |
74 | |
51 |