DAX Linkback table with specific columns

cr731

Well-known Member
Joined
Sep 17, 2010
Messages
611
I have a table in my data model that I want to return to the Excel worksheet through a linkback table, but I only want to bring back two columns.

How can I do this? If I right-click the table and go to Edit DAX, it just says the table name "Dimension_Customer" and I want to return just "Customer Name" and "Customer Address" to conserve workbook space.

Thanks
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Last edited:
Upvote 0
Do you know if "Dimensions" is a reserved word in DAX? I have a table named Dimensions and the above does not work for me if I do

EVALUATE

SUMMARIZE( Dimensions, Dimensions[CustomerName], Dimensions[ProductName] )

I get an error "The query did not run or the Data Model could not be accessed. Here's the error message we got: The syntax for 'Dimensions' is incorrect (EVALUATE Dimensions)."

If I try this with any other table name, it works. But Dimensions seems to cause trouble.
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,806
Members
449,048
Latest member
greyangel23

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