Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
tvaishnav
Helper IV
Helper IV

DAX 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(
                   VALUES('Date'[Date]
                    )
                   ,Fact_Hours[SUM Hours]
                    )

 

 

 

However, if I remove the VALUES function, I end up with an error I mentioned in the title of this question

 

 

 

AverageX = Averagex(
                  'Date'[Date]
                    )
                   ,Fact_Hours[SUM Hours]
                    )

 

 

 

Date column in Date table has unique values already. Why is VALUES function needed? 

Also, for second argument to AVERAGEX, Measure works. But if I try to put a column that is already a part of model, it would not. Why would that be?

2 REPLIES 2
tamerj1
Super User
Super User

Hi @tvaishnav 

Iteration functions requires a table as first argument. VALUES is a function that creats a table contains the unique values in a column. You cannot refer the column directly. 
Iteration functions creat a filter context over the tablw under iteration. Only the columns that belongs to this table can be refrenced directly. Columns from related tables in the "one" side of the relationship can be referenced using RELATED function. The "many" side related table can be referenced using RELATEDTABLE functions which bring a set of rows from the "many" side table which are realted to the current row on the iteration. In this case an aggregation must be provided in order to evaluate any column from this related table. 
on the other hand CALCULATE function can be used to perform context transition in irder to evaluate columns from rekated tables. In this case aggregation shall be provided. Remember that any refrenced measure is automatically wrapped with CALCULATE. 
please let if you still have any doubts 

Greg_Deckler
Community Champion
Community Champion

@tvaishnav Because you have an errant paren ). The second formula should be:

AverageX = Averagex(
                  'Date'[Date]
                   ,Fact_Hours[SUM Hours]
                    )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.