We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi all,
I would like to write a PQ-script where a source table and an exception table are combined into a corrected table where the category is corrected based on a condition specified in the exception table.
The first column of the exception table specifies which column in the source table needs to be used to run the conditional statement through.
The second is the matching value. If the condition is true, than the category in the source table should be corrected.
See example hereunder, anyone has an idea?
It was formerly set up as a hardcoded conditional column but I would like to set it up as a table so it stays visible in a workbook and other people can add rows to the exception table and update the corrected table.
Thanks for any help
Hi, @Anonymous
let
source = your_source_table,
exception = your_exception_table,
e_lst = List.Buffer(Table.ToRows(exception)),
txform =
Table.FromRecords(
Table.TransformRows(
source,
(r) =>
Record.TransformFields(
r,
{"Category",
(x) =>
[poz = List.PositionOf(e_lst, r, Occurrence.First, (a, b) => Record.Field(b, a{0}) = a{1}),
out = if poz = -1 then x else e_lst{poz}{2}][out]}
)
)
)
in
txform
Hi @Anonymous
I have attached an example of how you could handle this. I used Power Query in Excel since your screenshot appeared to be Excel, but this can be moved to Power BI if needed.
I have assumed that
My method is:
Below is the M code for fnReplacementCategory and Output:
// ============= fnReplacementCategory =====================================
let
ExceptionList = Table.ToRecords(Table.Buffer(Exception)),
ReplacementCategoryFunction = (InputRecord as record) =>
let
MatchingExceptions = List.Select(
ExceptionList,
each Record.FieldOrDefault(InputRecord, _[Column]) = _[Value]
),
FirstMatch = List.First(MatchingExceptions),
Category = FirstMatch[Category]?
in
Category
in
ReplacementCategoryFunction
// ============= Output ===================================================
let
Source = Source,
#"Replace Category" = Table.ReplaceValue(
Source,
each [Category],
each fnReplacementCategory(_),
Replacer.ReplaceText,
{"Category"}
)
in
#"Replace Category"
Hopefully this is of some help, and can be tweaked if needed.
Regards
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |