Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
WinterMist
Impactful Individual
Impactful Individual

Unable to Reference VAR Table Columns

Hello Community - 

 

So I am aware that:

"a variable name cannot be used as a table name in a column reference"

(https://www.sqlbi.com/articles/table-and-column-references-using-dax-variables/)

 

However, since my attempts have failed (to use ADDCOLUMNS to create a VAR table in which columns can be referenced),

I have left the code for V2 & V3 wrong intentionally, simply to show what I am trying to do.

 

VAR V1 --CREATE TEMP TABLE FROM 6 ID'S

VAR V2 --GET DISTINCT LIST OF [Crop Abbrev] FROM V1

VAR V3 --CREATE COMMA DELIMITED LIST OF DISTINCT [Crop Abbrev] FROM V2

 

Desired Result of V3 = "CORN, SOYBEANS"

 

Of course, currently only V1 works, which is why I am returning it here.

 

WinterMist_0-1701356608648.png

 

Thanks in advance.

 

Regards,

Nathan

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

One option is to use v1 as a filter table like this:

VAR v1 =
    FILTER (
        ALL ( 'D Crop' ),
        'D Crop'[CropKey] IN { 5767, 6014, 5408, 5769, 6015, 5438 }
    )
VAR v2 = CALCULATETABLE ( DISTINCT ( 'D Crop'[Crop Abbrev] ), v1 )
VAR v3 =
    CONCATENATEX (
        v2,
        'D Crop'[Crop Abbrev], ", ",
        'D Crop'[Crop Abbrev], ASC
    )
EVALUATE
    v3

View solution in original post

2 REPLIES 2
WinterMist
Impactful Individual
Impactful Individual

@AlexisOlson - Thanks very much for the help!

AlexisOlson
Super User
Super User

One option is to use v1 as a filter table like this:

VAR v1 =
    FILTER (
        ALL ( 'D Crop' ),
        'D Crop'[CropKey] IN { 5767, 6014, 5408, 5769, 6015, 5438 }
    )
VAR v2 = CALCULATETABLE ( DISTINCT ( 'D Crop'[Crop Abbrev] ), v1 )
VAR v3 =
    CONCATENATEX (
        v2,
        'D Crop'[Crop Abbrev], ", ",
        'D Crop'[Crop Abbrev], ASC
    )
EVALUATE
    v3

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.