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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
SkinnyPotato
Regular Visitor

Complex Matrix Help

Hello everyone I have a table that looks like 

NAMECourse NamePercent Complete
Person1Course150%
Person1Course220%
Person2Course215%

 I have a matrix where I have the names as the rows and course name as the columns and percent complete as the values. The hard part is I'm trying to create a dax formula that would filter out any name that does not have a value for Course1 while trying not to pivot the original table. So it would filter out person 2 because they never took course 1 but it would still show percentages for course 2 for those who did take course 1.

Here is what my current formula looks like, but this makes it so that it shows Course1 as the only column in the matrix

Filter =
CALCULATE('Table'[Percent-Complete],
    FILTER('Table',
        IF([Course ID] = "Course ID" && ([Percent Complete] <> 0 && NOT(ISBLANK([Percent Complete]))),
            [Percent-Complete]
        )
    )
)
2 REPLIES 2
amitchandak
Super User
Super User

@SkinnyPotato , You can create measures like

 

M1 = countrows(filter(allselected(Table), Table[NAME] = max(Table[Name]) && Table[Course] = "Course1"))

 

M2 = countrows(filter(Values(Table[Name]), not(isblank([M1])) && [M1]>0))

 

M2 is the meausre you need

@amitchandak Thankyou, but isn't that just returning the count of records and not the associated percent complete?

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors