Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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")
Solved! Go to 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 👍
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 👍
User | Count |
---|---|
81 | |
75 | |
64 | |
45 | |
44 |
User | Count |
---|---|
103 | |
44 | |
39 | |
39 | |
37 |