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
actroyani
Regular Visitor

Check if a value exists previously

Hi,

I would like to know how to create a new column where I get the value "New" if a person exists in previous months of my data and "Old" if it exists in previous months or if it's the first month of data.

I have a table like this:

DatePerson
15/11/2021A
13/11/2021A
12/11/2021B
10/11/2021C
20/10/2021A
15/10/2021C
10/10/2021C
15/09/2021A

Take into account that individuals may appear more than once on a month, so this is what I would like:

DatePersonColumn
15/11/2021AOld
13/11/2021AOld
12/11/2021BNew
10/11/2021COld
20/10/2021AOld
15/10/2021CNew
10/10/2021CNew
15/09/2021ANew

Thanks in advance!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@actroyani ,

a new column =

var _1 = countx(filter(Table, [Person] = earlier([Person]) && [Date] < earlier([Date] ) ), [Person]) +0

return

if(_1 > 0, "Old", "New")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
JRo
New Member

@amitchandak 

and if I want to check if it is NEW or OLD but only in last 5 weeks? So the range of date is 5 weeks before [Date]?

amitchandak
Super User
Super User

@actroyani ,

a new column =

var _1 = countx(filter(Table, [Person] = earlier([Person]) && [Date] < earlier([Date] ) ), [Person]) +0

return

if(_1 > 0, "Old", "New")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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