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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
char23
Helper II
Helper II

Add column and label date as current, previous, and old/blank

Hello, I have a set of data in one table I am trying to label. I want to add a new column and label each date as Current, Previous, and Old. I would like to do this in power query if possible, but can use dax if easier. I know I can easily distinguish between current and previous using a max formula with dax. But I want to label anything that is not the previous month as old or blank. 

 

Table:

Date
7/17/2024
7/17/2024
6/10/2024
6/10/2024
5/12/2024
5/12/2024

 

 

New column (Date Status) I want to add:

DateDate Status
7/17/2024Current
7/17/2024Current
6/10/2024Previous
6/10/2024Previous
5/12/2024Old/blank
5/12/2024Old/blank

 

1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

Hi @char23 

 

You can use this code in PQ:

 

Custom Column

= if Date.IsInCurrentMonth([Date]) then "Current"

else if Date.IsInPreviousMonth([Date]) then "Previous"

else "Old/Blank")

 

 

 

PhilipTreacy_0-1721262348553.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

1 REPLY 1
PhilipTreacy
Super User
Super User

Hi @char23 

 

You can use this code in PQ:

 

Custom Column

= if Date.IsInCurrentMonth([Date]) then "Current"

else if Date.IsInPreviousMonth([Date]) then "Previous"

else "Old/Blank")

 

 

 

PhilipTreacy_0-1721262348553.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.