Power Query Question on extracting data to create a date!

scpournara

New Member
Joined
Aug 24, 2014
Messages
45
In creating a Power Query by grabbing data from a Folder with .CSV files, I end up with the Source.Name with 8 characters that represent the Date of the file. Trying to extract and format those numbers as a date. I can create a Custom column from the selection and isolate the 8 characters but can not get them inot a date format. Any suggestions?
 

Attachments

  • Screenshot 2022-12-19 061520.jpg
    Screenshot 2022-12-19 061520.jpg
    105.5 KB · Views: 13

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Starting with this:
1671462344206.png

This is the query to get out the date from the samples I had available:
Power Query:
let
    Source = Folder.Files("C:\Users\jdell\Dropbox\Excel\MyOnlineTrainingHub\excel_dashboard_dark_theme_db_dl\Data"),
    // Added to insure all extensions were lower case.
    LowercasedText = Table.TransformColumns(Source,{{"Extension", Text.Lower, type text}}),
    // Added to insure only .csv files were being handled. More could be done with the Name column to insure no stray files are included.
    FilteredRows = Table.SelectRows(LowercasedText, each [Extension] = ".csv"),
    RemovedOtherColumns = Table.SelectColumns(FilteredRows,{"Name", "Content"}),
    // To prepare to get the last two characters of the Name column.
    ReplacedValue = Table.ReplaceValue(RemovedOtherColumns,".csv","",Replacer.ReplaceText,{"Name"}),
    InsertedFirstCharacters = Table.AddColumn(ReplacedValue, "Year", each Text.Start([Name], 4), type text),
    InsertedLastCharacters = Table.AddColumn(InsertedFirstCharacters, "Month", each Text.End([Name], 2), type text),
    RemovedColumns = Table.RemoveColumns(InsertedLastCharacters,{"Name"}),
    ReorderedColumns = Table.ReorderColumns(RemovedColumns,{"Year", "Month", "Content"}),
    // Auto Generated
    FilteredHiddenFiles1 = Table.SelectRows(ReorderedColumns, each [Attributes]?[Hidden]? <> true),
    // Auto Generated
    InvokeCustomFunction1 = Table.AddColumn(FilteredHiddenFiles1, "Transform File", each #"Transform File"([Content])),
    // Auto Generated BUT added "Year", "Month", manually to keep them.
    RemovedOtherColumns1 = Table.SelectColumns(InvokeCustomFunction1, {"Year", "Month", "Transform File"}),
    ExpandedTransformFile = Table.ExpandTableColumn(RemovedOtherColumns1, "Transform File", {"Column1", "Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9"}, {"Column1", "Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9"})
in
    ExpandedTransformFile
Got this:
1671462392121.png

Note that I had to manually stop PQ from removing the Year and Month column:
// Auto Generated BUT added "Year", "Month", manually to keep them.
RemovedOtherColumns1 = Table.SelectColumns(InvokeCustomFunction1, {"Year", "Month", "Transform File"}),
By default, PQ is going to generate a Parameter query, a "Sample File" (binary of one file), a Transform function, and a Transform Sample query, and then append all the files. The Transform Sample query is where you make changes you want to happen to all the files. Only change types when needed - they won't transfer over - do that as late as possible in the main query. I added comments to some of the steps' Properties
Note that if you try to use the above query, you will have to delete the step FilteredHiddenFiles1 and do the rest manually. Don't forget to add the date columns you add to the RemovedOtherColumns1 step.

Hope that answers the question.
 
Upvote 0
Depending on what version of PQ you have, once you have the 8 characters, you could use Date.FromText(yourtextfield, [Format="MMddyyyy", Culture="en-US"])
 
Upvote 0

Forum statistics

Threads
1,223,398
Messages
6,171,885
Members
452,429
Latest member
simransonu08

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top