Forum Discussion
rhinorocks
4 years agoFrequent Visitor
Defining Variables
Hi All, I am new to Dax and currently facing issues in defining variables. Can we define table columns in Variable? Like I have a Table called Customer Master and I want to define a variable...
- 4 years ago
I think I got the solution of this issue. I was trying to write a measure instead of the calculated column.
rhinorocks
4 years agoFrequent Visitor
Consider the following problem posted on this forum -
When I am trying to write this particular part of the code -
Days between pricelists =
var _item = 'Table'[Item]
The tellisense is not able to detect this 'Table' hence I am not being able to proceed. Check the attached picture
While If I write the second line of the soluation, then I am getting no error.
var _endDate = 'Table'[ValidityEndingDate]
Why is this happening?
- rhinorocks4 years agoFrequent Visitor
I think I got the solution of this issue. I was trying to write a measure instead of the calculated column.