Creating linked tables in different worksheets with only certain columns selected.

leojez

Board Regular
Joined
Apr 12, 2022
Messages
51
Office Version
  1. 365
Platform
  1. Windows
Hello! Hoping someone can help with this head scratcher!

I've got a workbook with various worksheets in, and a dashboard worksheet where I'm putting key info from other worksheets.

I've got one section of a table working perfectly using the following:

Excel Formula:
=TableWatchList[[#All],[Ticker]:[Change (%)]]

However, I want to do the same with another table, but only for certain columns (not a range, as in the first table). I can't seem to get a working formula, basically, I want the following:

Table name:
Assigned_Stock_Table

Columns to show:
Ticker
Current price
Assigned price
Current Profit / Loss

I've tried variations, such as

Excel Formula:
=Assigned_Stock_Table[[#All],[Ticker],[Current price],[Assigned price],[Current Profit / Loss]]

but whatever I attempt doesn't work. Any ideas on this?

Thanks!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
How about like
Excel Formula:
=FILTER(Assigned_Stock_Table[#All],(Assigned_Stock_Table[#Headers]="Ticker")+(Assigned_Stock_Table[#Headers]="Current price")+(Assigned_Stock_Table[#Headers]="Assigned price"))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,316
Messages
6,124,225
Members
449,148
Latest member
sweetkt327

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