Forum Discussion

Darko_Giac's avatar
Darko_Giac
Helper II
7 years ago
Solved

Importing Update Files from Folder Without Changing Sheet Name

Hi all,    I'm currently working in Power Query and am exporting some survey data on a weekly basis to track the number of participants over the next month.   The variables in the export will not...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    7 years ago

    Hi Darko_Giac,

     

    I would suggest we only change the necessary parts and leave the Power BI to generate other codes. The first line of your code can't run. It could be like below.

     

    let
        Source = Folder.Files("D:\pbi_folder1"),
        #"D:\pbi_folder1\_ds xlsx" = Source{[#"Folder Path"="D:\pbi_folder1\",Name="ds.xlsx"]}[Content],
        #"Imported Excel" = Excel.Workbook(#"D:\pbi_folder1\_ds xlsx"),
        #"Added Index" = Table.AddIndexColumn(#"Imported Excel", "Index", 0, 1),
        Sheet1_Sheet = #"Added Index"{[Index=0,Kind="Sheet"]}[Data]
    in
        Sheet1_Sheet

     

    Screen-Capture-11-6-2018-11-09-00-AM

     

    Best Regards,
    Dale