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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Calculated Column with Grouping

Hi. I'm trying to create a Yes/No Column based on the evaluation on a single "training" Column; while grouping on two other columns -- ID and Year.

 

The End User Question would be: Did Jimmy (ID 1001) receive training in 2017; in 2018?  

TY!

Dan

 

Excel DAX Support.jpg

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You want to remove the quarter context, but keep UserID and Year:

 

Results =
IF (
    CALCULATE (
        MAX ( Table1[Training] ),
        ALLEXCEPT ( Table1, Table1[UserID], Table1[Year] )
    )
        = "Yes",
    "Yes",
    "No"
)

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

You want to remove the quarter context, but keep UserID and Year:

 

Results =
IF (
    CALCULATE (
        MAX ( Table1[Training] ),
        ALLEXCEPT ( Table1, Table1[UserID], Table1[Year] )
    )
        = "Yes",
    "Yes",
    "No"
)
Anonymous
Not applicable

Yep.  Nicely Done.  Thanks!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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