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
k1ko92
Regular Visitor

Problem many to many building dates

Hi Everyone,

 

I appreciate with you guys can help me with this DAX, I need to build a date (Ex : 20220213), using 2 tables. At column dax_YearMonthNo I need this date. Using this DAX Formula i could get YYYYMM (Image1) when i try to make a lookup to bring the earliest date from Calendar it fails, (already tried using Earlier)

 

Image 1

k1ko92_2-1645795362708.png

k1ko92_4-1645795498103.png

 

 

Image 2

k1ko92_3-1645795432684.png

k1ko92_5-1645795534057.png

 

 

 

 

Calendar

k1ko92_0-1645795122965.png

 

Table 1

k1ko92_1-1645795194392.png

 

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @k1ko92 

You have multiple 'lookupvalue' functions nested in your calculated columns, which is not good for troubleshooting.

You need to create separate calculated columns to test whether each 'lookupvalue'  is working correctly.

For further research, please provide sanitized sample data that fully covers your issue.

 

Best Regards,
Community Support Team _ Eason

amitchandak
Super User
Super User

@k1ko92 , for period you can get date like

 

date = date(left([period],4), right([period],2),1)

 

Or from calendar table

 

Minx(filter(calendar, calendar[Period] = table[Period]) , calendar[Date])

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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.

Top Solution Authors