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
SJHALANI
Helper I
Helper I

Create new column based on date

Hello,

I have a column which has 'Contract End date' listed in it. I want to create a column 'Contract Status' next to it which does the following:

 

- if 'Contract End date' > current date, 'Contract Status' = Active

- if today - 60 days <'Contract End date' < today, 'Contract Status' = Pending

- if 'Contract End date' < today - 60 days, 'Contract Status' = Inactive

 

Contract End DateContract Status
9/30/2022Inactive
6/30/2023Active
1/30/2023Pending



Any help would be appreciated. Thanks!

 

1 ACCEPTED SOLUTION
Einomi
Resolver II
Resolver II

Hi,

You can try this

 

Table.AddColumn(PrevStep, "ContractStatus", each if [Contract End Date] > Date.From(DateTime.LocalNow()) then "Active"
else if [Contract End Date] > (Date.AddDays(Date.From(DateTime.LocalNow()),-60)) and [Contract End Date] < Date.From(DateTime.LocalNow()) then "Pending"

else if [Contract End Date] < (Date.AddDays(Date.From(DateTime.LocalNow()),-60))  then "Inactive"
else null)

 

I have tried on my data and it worked.

 

Hope it will be helpful

View solution in original post

2 REPLIES 2
SJHALANI
Helper I
Helper I

Thanks @Einomi This is working!

Einomi
Resolver II
Resolver II

Hi,

You can try this

 

Table.AddColumn(PrevStep, "ContractStatus", each if [Contract End Date] > Date.From(DateTime.LocalNow()) then "Active"
else if [Contract End Date] > (Date.AddDays(Date.From(DateTime.LocalNow()),-60)) and [Contract End Date] < Date.From(DateTime.LocalNow()) then "Pending"

else if [Contract End Date] < (Date.AddDays(Date.From(DateTime.LocalNow()),-60))  then "Inactive"
else null)

 

I have tried on my data and it worked.

 

Hope it will be helpful

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
Top Kudoed Authors