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
HJK
Frequent Visitor

I want to get the date from another table and change it to the last day of the month.

Hi

 

I want to get the date from another table for the same Order ID and change it to the last day of the month.

How can I do that?

 

table1

HJK_0-1671415141168.png

 

 

table2

HJK_4-1671415581727.png

 

 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

I assume you have some sort of relationship between the order IDs in both tables.
If so you can use RELATED[TransDate] to get the related transaction day. To get the last day of the related month, you need to wrap that in EOMONTH (End Of Month).
So overall, you will have something like:

NewColumn = EOMONTH(RELATED([TransDate]), 0)

 

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

I assume you have some sort of relationship between the order IDs in both tables.
If so you can use RELATED[TransDate] to get the related transaction day. To get the last day of the related month, you need to wrap that in EOMONTH (End Of Month).
So overall, you will have something like:

NewColumn = EOMONTH(RELATED([TransDate]), 0)

 

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