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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
deeave
Helper I
Helper I

DAX Measure Error

Receiving error "A single value for column 'modified' in table 'Projects UA2' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."
 
Confirmed it is a date field and the field exists.
 
Project Active, No Achievement Updates in 30 Days = CALCULATE (
    COUNTROWS ( 'Projects Data2' ),
    FILTER (
        'Projects Data2',
        'Projects UA2' [modified] < TODAY() - 30
            && ISBLANK ( 'Projects PA2'[AchievementDate] )
    ),
    'Projects Data2'[projectstatus] = "Active",
    NOT ISBLANK ( 'Projects Data2'[projectnumber] )
)
1 ACCEPTED SOLUTION

As its a one-to-many you would need to use RELATEDTABLE, e.g.

Project Active, No Achievement Updates in 30 Days =
CALCULATE (
    COUNTROWS ( 'Projects Data2' ),
    FILTER (
        'Projects Data2',
        VAR MaxModifiedDate =
            MAXX ( RELATEDTABLE ( 'Projects UA2' ), 'Projects UA2'[modified] )
        RETURN
            MaxModifiedDate
                < TODAY () - 30
                && ISBLANK ( RELATED ( 'Projects PA2'[AchievementDate] ) )
                && 'Projects Data2'[projectstatus] = "Active"
                && NOT ISBLANK ( 'Projects Data2'[projectnumber] )
    )
)

View solution in original post

5 REPLIES 5
deeave
Helper I
Helper I

Thank you! 

 

It comes back with " The column 'Projects UA2[modified]' either doesn't exist or doesn't have a relationship to any table available in the current context." 

 

When I type in the name, it is not showing me all the tables in the workspace, only one that is an excel upload.  

What is the relationship between 'Projects UA2' and 'Projects Data2' ?

The relationships between Projects UA2 and Projects Data2 is below:

  • Projects Data2 to Projects UA2 (ProjectID One to Many)

As its a one-to-many you would need to use RELATEDTABLE, e.g.

Project Active, No Achievement Updates in 30 Days =
CALCULATE (
    COUNTROWS ( 'Projects Data2' ),
    FILTER (
        'Projects Data2',
        VAR MaxModifiedDate =
            MAXX ( RELATEDTABLE ( 'Projects UA2' ), 'Projects UA2'[modified] )
        RETURN
            MaxModifiedDate
                < TODAY () - 30
                && ISBLANK ( RELATED ( 'Projects PA2'[AchievementDate] ) )
                && 'Projects Data2'[projectstatus] = "Active"
                && NOT ISBLANK ( 'Projects Data2'[projectnumber] )
    )
)
johnt75
Super User
Super User

Because you're trying to access columns from a different table you need to use the RELATED function. Also, you can combine all the filter conditions into one,

Project Active, No Achievement Updates in 30 Days =
CALCULATE (
    COUNTROWS ( 'Projects Data2' ),
    FILTER (
        'Projects Data2',
        RELATED ( 'Projects UA2'[modified] )
            < TODAY () - 30
            && ISBLANK ( RELATED ( 'Projects PA2'[AchievementDate] ) )
            && 'Projects Data2'[projectstatus] = "Active"
            && NOT ISBLANK ( 'Projects Data2'[projectnumber] )
    )
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.