Forum Discussion
Anonymous
7 years agoNot applicable
Measure not recognizing columns
I am very inexperienced with DAX and I get confused when I try to create a measure and I cant reference a coulmn from a table that I want. For example if i want to use an "If" Statement with a da...
- 7 years ago
If you reference a column in a measure, you must wrap the column in an aggregation function like MIN, MAX, SUM, AVERAGE, etc.
Greg_Deckler
7 years agoCommunity Champion
If you reference a column in a measure, you must wrap the column in an aggregation function like MIN, MAX, SUM, AVERAGE, etc.
Anonymous
4 years agoNot applicable
What does it mean to wrap them? I am having this issue as well.
- WulfieWolf4 years agoRegular Visitor
you have to do it like that:
Measure = sume(table[column])