Forum Discussion
jshumaker
3 years agoFrequent Visitor
table variable
I am trying to use the output of a LINESTX function in a DAX formula. When I try to access the Slope1 value from a table variable, the field is not found. Although if I create a calculated table us...
- 3 years ago
You just need:
SELECTCOLUMNS( linVar, [Slope1] )
It works referencing the variable but the intellisense can't pick it up at the moment. Just ignore the red underline.
bcdobbs
3 years agoCommunity Champion
You just need:
SELECTCOLUMNS( linVar, [Slope1] )
It works referencing the variable but the intellisense can't pick it up at the moment. Just ignore the red underline.