• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Table populated with subset of another Table, without using Pivot Tables

Thank you!

For future reference, how would I make it work with a value directly from a Table?

Obviously, I could name a cell in the table, or have a named cell reference a cell in a table, like the attached, but can it work from a structured reference?


Clipboard04.jpg
 

Attachments

  • SortEx6.xlsm
    119.5 KB · Views: 6
You can, but there is no benefit in using Table, when you are referencing single value variable.

Unless you need to load list from single column. Just load the entire table to PowerQuery and do join operation as needed.

To load single column from table as list...
Code:
listName = Excel.CurrentWorkbook(){[Name="TableName"]}[Content][ColumnName]
 
Thanks,

I was thinking I might end up wanting to add another selection criterion at some point, but I suppose I could always create another named cell for another single variable.

Is there a simple way to get the query to automatically refresh (e.g. when the worksheet is activated)?
 
Back
Top