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.
Anna123456
3 years agoFrequent Visitor
Hello,
I have a question concerning your solution. I want to get the value of "visit24hrs" for today for each title in my report. I now used this formula:
result = CALCULATE(SUM(AnalyticsView[Visits24h]), FILTER(ALL( AnalyticsView), (Date(2023,03,02) = AnalyticsView[Date])))
In my chart I use for Y Title and for X result. BUT then I get the same number (the summed result) for each Title.
Question: How can I display the result for an Item in my chart? Without the "sum" in the formula I am not able to use Visits24hrs in the measure (it says it can not regognize the column)
In my chart I use for Y Title and for X result. BUT then I get the same number (the summed result) for each Title.
Question: How can I display the result for an Item in my chart? Without the "sum" in the formula I am not able to use Visits24hrs in the measure (it says it can not regognize the column)