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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
erwinsc
Frequent Visitor

Need help with complex DAX question

Hi all,

 

I have written the following DAX code for filtered table in DAXStudio:

EVALUATE
ADDCOLUMNS ( 
	CALCULATETABLE ( 
		ADDCOLUMNS ( 
			SUMMARIZE ( 
				NATURALLEFTOUTERJOIN ( 
					Calendar544W,
					TimesheetFacts
				),
				Employees01[Person],
				TimesheetFacts[CMHRWRKS],
				TimesheetFacts[CMHRWRKI],
				Calendar544W[Date],
				Calendar544W[WeekdayNum],
				Calendar544W[IsPublicHoliday]
			),
			"Schedule", 
				MAXX ( 
					SUMMARIZE ( 
						TimesheetFacts,
						Employees01[Person],
						TimesheetFacts[CMHRWRKS],
						Calendar544W[WeekYearNum]
					),
					[CMHRWRKS]
				)
		),
		FILTER ( 
			Calendar544W,
			Calendar544W[WeekYearNum] = 202001
		),
		FILTER ( 
			Employees01,
			Employees01[Person] = 537 || Employees01[Person] = 125
		)
	),
    "# Gross hrs", CALCULATE ( SUM ( TimesheetFacts[KMHRCATSH] ) )
)
ORDER BY [Date], [Person]

The code gives the following output:

Output.png

What I want is to have the column "Schedule" to show the value of column "CMHRWRKS" individually for both persons. So P90E for all lines belonging to person 125 and P80A for all lines belonging to person 537.

 

Can anyone tell me how this can be done?

 

Rg. Erwin

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

Sample source data would really help but maybe this:

 

EVALUATE
ADDCOLUMNS ( 
	CALCULATETABLE ( 
		ADDCOLUMNS ( 
			SUMMARIZE ( 
				NATURALLEFTOUTERJOIN ( 
					Calendar544W,
					TimesheetFacts
				),
				Employees01[Person],
				TimesheetFacts[CMHRWRKS],
				TimesheetFacts[CMHRWRKI],
				Calendar544W[Date],
				Calendar544W[WeekdayNum],
				Calendar544W[IsPublicHoliday]
			),
			"Schedule", 
				MAXX ( 
					FILTER ( 
						TimesheetFacts,
						Employees01[Person] = EARLIER( Employees01[Person] 
                                        ),
			                TimesheetFacts[CMHRWRKS]
				)
		),
		FILTER ( 
			Calendar544W,
			Calendar544W[WeekYearNum] = 202001
		),
		FILTER ( 
			Employees01,
			Employees01[Person] = 537 || Employees01[Person] = 125
		)
	),
    "# Gross hrs", CALCULATE ( SUM ( TimesheetFacts[KMHRCATSH] ) )
)
ORDER BY [Date], [Person]


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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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