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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Arooz
New Member

Measure returns true if all rows contain the same value

Hi, 

 

I would like to add a Column/Measure 'Free Entirely' which is True when the 'Type' is "Free" for all rows with the same 'Name'. 

 

I am rather new at DAX and have been stuck at this for a while. Thanks in advance!

 

I.e. if the Time Filter is set between 9 and <10, and the following table is resulted, the 'Free Entirely' column would result in true, for all Name = Name of current row

 

TimeNameTypeFree Entirely
9:00:00JohnFreeFalse
9:15:00JohnFreeFalse
9:30:00JohnBusyFalse
9:45:00JohnBusyFalse
9:00:00BobFreeTrue
9:15:00BobFreeTrue
9:30:00BobFreeTrue
9:45:00BobFreeTrue
1 ACCEPTED SOLUTION
nandukrishnavs
Community Champion
Community Champion

@Arooz 

Try this measure.

 

FreeEntirely =
VAR _selectedName =
    CALCULATE ( SELECTEDVALUE ( 'Table'[Name] ) )
VAR _countName =
    CALCULATE ( COUNT ( 'Table'[Name] ) )
VAR _countNameFree =
    CALCULATE (
        COUNT ( 'Table'[Name] ),
        FILTER ( ALL ( 'Table'[Name] ), 'Table'[Name] = _selectedName ),
        'Table'[Type] = "Free"
    )
VAR result =
    IF ( _countName = _countNameFree, TRUE (), FALSE () )
RETURN
    result

 

 

free.JPG

 

This will not work if you add the Time field into the visual.



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂


Regards,
Nandu Krishna

View solution in original post

2 REPLIES 2
nandukrishnavs
Community Champion
Community Champion

@Arooz 

Try this measure.

 

FreeEntirely =
VAR _selectedName =
    CALCULATE ( SELECTEDVALUE ( 'Table'[Name] ) )
VAR _countName =
    CALCULATE ( COUNT ( 'Table'[Name] ) )
VAR _countNameFree =
    CALCULATE (
        COUNT ( 'Table'[Name] ),
        FILTER ( ALL ( 'Table'[Name] ), 'Table'[Name] = _selectedName ),
        'Table'[Type] = "Free"
    )
VAR result =
    IF ( _countName = _countNameFree, TRUE (), FALSE () )
RETURN
    result

 

 

free.JPG

 

This will not work if you add the Time field into the visual.



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂


Regards,
Nandu Krishna

Worked like a charm, thanks!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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