Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
HarperCash
Regular Visitor

Custom column to return "Expired" value if date within a different column is older than six months

I'm trying to create a custom column that will check the date qwithin an existing column named Last Updated and determine if the date is six months older than the current date. If it is I want to return a value of Expired, if not thana value of Compliant.

 

I have tried the below:

if [#"Last Updated:"] = 6 < DateTimeZone.LocalNow then "Expired" else "Compliant")

 

1 ACCEPTED SOLUTION

Apologies, I wasn't looking at the power query side of things

 

try this:

 

if [Last Updated] < Date.From(Date.AddMonths(DateTime.LocalNow(), -6)) then "Expired" else "Compliant"

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

View solution in original post

3 REPLIES 3
DOLEARY85
Super User
Super User

HI,

 

You could try this:

 

= if [Last Updated] < DATEADD(DateTimeZone.LocalNow(), -6, MONTH) then "Expired" else "Compliant"

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Thanks so much!

 

Getting errors saying it doesn't recognise DATEADD and MONTH

Apologies, I wasn't looking at the power query side of things

 

try this:

 

if [Last Updated] < Date.From(Date.AddMonths(DateTime.LocalNow(), -6)) then "Expired" else "Compliant"

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.