Forum Discussion

Ocasio27's avatar
Ocasio27
Iron Contributor
Jun 16, 2020
Solved

Create query from sheet or Pivot Table

I have a pivot table, which cannot be turned into a Query. I generated a table off it in another sheet but I cannot turn that table into a Query. Only workaround I found was to create a connection to...
  • SergeiBaklan's avatar
    Jun 16, 2020

    Ocasio27 

    You may use named range and Power Query it. For example, select entire sheet, name it as mySheet and query it as

    let
        Source = Excel.CurrentWorkbook(){[Name="mySheet"]}[Content]
    in
        Source

    however much better to narrow the range.

     

    In general I'm not sure that's a good idea to transform data from PivotTable with Power Query, perhaps you may receive the same result playing with data model.

Resources