Forum Discussion
tvaishnav
Helper IV
4 years agoDAX error : A single value for column 'Date' in table 'Date' cannot be determined.
I am new to DAX and trying learn it. So I am essentially looking for an explanation as to what is causing the error. Following formula works fine AverageX = Averagex(
...
Greg_Deckler
Community Champion
4 years agotvaishnav Because you have an errant paren ). The second formula should be:
AverageX = Averagex(
'Date'[Date]
,Fact_Hours[SUM Hours]
)