Last active
January 30, 2024 17:50
-
-
Save cbaragao/4fe04696ae1be883609c1de8a4978b8a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let fnCreateDimID = | |
(fact as table, col_name as text)=> | |
let | |
fnCreateDim = (fact as table, col_name as text)=> | |
let | |
removed_cols = Table.SelectColumns(fact,{col_name}), | |
dedupe = Table.Distinct(removed_cols), | |
sorted = Table.Sort(dedupe,{{col_name, Order.Ascending}}), | |
id_name = col_name & "_id", | |
add_index = Table.AddIndexColumn(sorted, col_name & "_id", 1, 1, Int64.Type), | |
order = Table.ReorderColumns(add_index,{id_name, col_name}) | |
in | |
order, | |
dim= fnCreateDim(fact, col_name), | |
Join = Table.Join(fact, col_name, dim, col_name), | |
Remove = Table.RemoveColumns(Join, col_name) | |
in | |
Remove, | |
fnType = type function (fact as table, col_name as text) as table | |
meta [ | |
Documentation.Name = "fnCreateDimID", | |
Documentation.LongDescription | |
= "This take a table and a column in that table. It then replaces the column with a key." | |
] | |
in | |
Value.ReplaceType(fnCreateDimID, fnType) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment