Power Query help needed

Ajaykg

New Member
Joined
Nov 29, 2017
Messages
1
Hi guys,

Thank you for letting me be a part of the community. I wanted to know something about PowerQuery Excel 2016.

I am getting reports of my cash register in Excel and i wanted make use of the data. The problem is that the date is only in one cell above in the sheet and i can not make a clean datatable, is it possible to copy that cell across a collom ? so i can merge all the sheets (different date in the cell) in one PowerQuery table.

Thank you,

Ajay from the Netherlands.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
It is possible. "How", depends on the detailed specifications.
In the query below the dates are in cell A1 of each worksheet.
Otherwise the column headers ("Id" and "Text" in this example) are in row 2 and data starts at row 3.

Code:
let
    Source = Excel.Workbook(File.Contents("C:\Users\Marcel\Documents\Forum bijdragen\MrExcel Power BI\Workbook with date in 1 cell.xlsx"), null, true),
    #"Removed Other Columns" = Table.SelectColumns(Source,{"Data"}),
    #"Added Date" = Table.AddColumn(#"Removed Other Columns", "Date", each Table.FirstValue([Data]), type date),
    #"Transformed Data" = Table.TransformColumns(#"Added Date",{{"Data", each Table.PromoteHeaders(Table.Skip(_,1)), type table}}),
    #"Expanded Data" = Table.ExpandTableColumn(#"Transformed Data", "Data", {"Id", "Text"}, {"Id", "Text"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Expanded Data",{{"Id", Int64.Type}, {"Text", type text}})
in
    #"Changed Type"
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,552
Messages
6,114,278
Members
448,559
Latest member
MrPJ_Harper

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