Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I am working in Data Factory with Power Query using a Folder Connector I Created a Custom Coulmn extracting information form the Name of the file and I would like to be included in the Trasnform file What I need to do the name of the Custom Column is Week
Solved! Go to Solution.
Use this:
I recommend add this as new step just after Filtered Rows step.
This will transform [Content] from binary to table.
If your tables don't have columns in 1st row, change true to null.
After this you can delete all steps below and also whole Transform File group.
Then just expand [Content] table.
= Table.TransformColumns(#"Filtered Rows", {{"Content", each Excel.Workbook(_, true), type table}})
fails after insreting the new step
The import Filtered Rows matches no exports. Did you miss a module reference?
Use this:
Finally I found to add the week column to the data table not the Transform but works
I created the week custum coulmn to allow me to filter the files for the previous 90 days and is working form here I would like to add the week as coulmn to the transform file. Them in the transform file I would like to clean the data in the first file, change the types and Unpivot some coulms previous to combine them
I need it to have unique keys in the transfor filw if not the combine will be genrating duplicates the unique key that I want is Week, Site, Part, Period. Site Part Period exists in the excel files.