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
Anonymous
Not applicable

CALENDAR

Hi all!

I need to get the min & max date vale from 2 or more different fact tables in order to create a dynamic Master Calendar.

Any idea? I used to use "||" but seems it doesnt work right now.
 
Right now I have the following script:
Calendar = ADDCOLUMNS (
    CALENDAR (min(Sesiones[createDate]) ; max(Sesiones[createDate]))
1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi  @Anonymous ,

 

I created 3 date tables as a sample:

Annotation 2020-04-17 165929.pngAnnotation 2020-04-17 165952.pngAnnotation 2020-04-17 170010.png

 

Then you need first to create a new table combing all the dates using below dax expression:

 

Table 2 = 
UNION(DISTINCT('Table'[Date]),DISTINCT('Table (2)'[Date]),DISTINCT('Table (3)'[Date]))

 

Finally create a new table to get a calendar date containing the min date and max date:

 

Table 3 = CALENDAR(MIN('Table 2'[Date]),MAX('Table 2'[Date]))

 

And you will see:

Annotation 2020-04-17 171817.png

For the related .pbix file,pls click here.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

 

 

View solution in original post

2 REPLIES 2
v-kelly-msft
Community Support
Community Support

Hi  @Anonymous ,

 

I created 3 date tables as a sample:

Annotation 2020-04-17 165929.pngAnnotation 2020-04-17 165952.pngAnnotation 2020-04-17 170010.png

 

Then you need first to create a new table combing all the dates using below dax expression:

 

Table 2 = 
UNION(DISTINCT('Table'[Date]),DISTINCT('Table (2)'[Date]),DISTINCT('Table (3)'[Date]))

 

Finally create a new table to get a calendar date containing the min date and max date:

 

Table 3 = CALENDAR(MIN('Table 2'[Date]),MAX('Table 2'[Date]))

 

And you will see:

Annotation 2020-04-17 171817.png

For the related .pbix file,pls click here.

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

 

 

Greg_Deckler
Super User
Super User

I would use CALENDARAUTO.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.