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

Calculate table and replace values based on another table

Hi,

 

I have a following source table:

Contract IDStart DateEnd DateValue
A12020-12-012021-12-31100
A22021-03-012022-12-31200
A32021-05-012023-12-31300

 

I'm trying to create a calculated table with contracts, which expire before 2023-01-01 and at the same time Start Date and End Date will change to Expiry Date plus 1 day, so in results I'll get:

Contract IDStart DateEnd DateValue
A12022-01-012022-12-31100
A22023-01-012023-12-31200

 

I know how to create calculated table:

 

    CALCULATETABLE (
        'tblContractList',
        'tblContractList'[End Date] < DATE ( 2023, 01, 01 )

)

But how to replace the values in Start Date column in calculated table based on values from End Date column from the source table?
        

1 REPLY 1
Anonymous
Not applicable

Why would you want to do it in DAX instead of Power Query? Is it not easier, faster and more efficient to do the transformation in PQ?

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