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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
johnghannam
Frequent Visitor

Union And Summarize Table

Hi guys,

 

for some reason the last summarize is not showing up!

Any ideas?

 

DAX 1.png

 

thank you

 

John

 

 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

@johnghannam

 

The 3rd SUMMARIZE appears to be returning a blank row, suggesting that 30 Jan 2017 is not in the DimDates table.

Does your date table contain a contiguous series of dates?

 

I tested with a dummy date table ending with 30 Apr 2017 (created with CALENDAR function) and the  DAX query returned three rows.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

3 REPLIES 3
OwenAuger
Super User
Super User

@johnghannam

 

The 3rd SUMMARIZE appears to be returning a blank row, suggesting that 30 Jan 2017 is not in the DimDates table.

Does your date table contain a contiguous series of dates?

 

I tested with a dummy date table ending with 30 Apr 2017 (created with CALENDAR function) and the  DAX query returned three rows.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

It does have contiguous series Smiley Sad

 

I ended up using the following dax instead

 

EVALUATE
Union 
(	
	
	SUMMARIZE
	(
		DimDates
		,"Date Reference","MTD"
		,"Date",LASTDATE(DimDates[Dates])
	)
,	

	SUMMARIZE
	(
		DimDates
		,"Date Reference","Last Three Months" 
		,"Date", EOMONTH(Date(Year(LASTDATE(DimDates[Dates])),Month(LASTDATE(DimDates[Dates]))-3,Day(LASTDATE(DimDates[Dates]))),0)
	)	
)	

is this the best practice?

Am I supposed to have my dimdates by day?

My Dates are being generated by sql server the source of the dates is the FactTable that has only the end of the month dates.

Do you think if i switched the dates to the begining of the month the dateadd function will work?

 

Thanks

 

@johnghannam

 

Yes best practice for a date dimension table is to have a row per day for a contiguous block of days.

 

Your original DAX query would have worked if you had used month-start dates, due to the way DATEADD works.

 

  • DATEADD will follow the lineage of the column provided in the first argument, and only return dates that exist in that column.
  • Also by the looks of it DATEADD will not interpret a single date as a month-end date (it will interpret 2+ dates as a sequence of month-end dates).

 

Your new method works because EOMONTH doesn't require the resultant date to be present in the Date column.

 

Regards,

Owen 🙂


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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