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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
sean_cochran
Resolver I
Resolver I

Unable to reference LINESTX table output using SELECTCOLUMN

UPDATE: sample file here. Look at the DAX Query View. I'm developing a calculation item, but using the DAX Query View for testing purposes.

 

I have stored the output of a LINESTX function (which is a table) in a variable:

 

 

// Calculate regression line based on measureTable
VAR line = LINESTX( measureTable, [Y], [X], TRUE)

 

 

This outputs a table of values as expected:

sean_cochran_1-1706801769985.png

 

However, when I try to extract specific values from that table using "SELECTCOLUMNS", the columns [Slope1] and [Intercept] are not recognized:

sean_cochran_0-1706801895181.png

Does anyone have any idea what I might be doing wrong?

 

1 ACCEPTED SOLUTION

@sean_cochran,

 

It appears there is a bug in the DAX editor. When I view the calculation item in Tabular Editor, it doesn't contain an error. See if you can use the calculation item successfully.

 

DataInsights_0-1707151323954.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
DataInsights
Super User
Super User

@sean_cochran,

 

Try adding the name of the new column:

 

VAR slope = SELECTCOLUMNS ( line, "Slope1", [Slope1] )

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Same result:

sean_cochran_0-1707143392382.png

 

@sean_cochran,

 

It appears there is a bug in the DAX editor. When I view the calculation item in Tabular Editor, it doesn't contain an error. See if you can use the calculation item successfully.

 

DataInsights_0-1707151323954.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




The calculation item worked. I'm very surprised - normally I'm the one at fault. Is there an official process to report bugs like this?

@sean_cochran,

 

Glad to hear it works. You can report the issue at the link below:

 

https://community.fabric.microsoft.com/t5/Issues/idb-p/Issues 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors