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
Anonymous
Not applicable

Flag to identify new user in a dataset

Hi All,

 

I have a dataset with user information date wise. I need to add a custom column flagging the new users based on the date. In the below dataset on 6/2/2020, have 2 new users(X, Y) when compared with previous records .Could you please help me achieve this. 

 

Flag.PNG

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Yes, @amitchandak 's answer is right. you should do like this.

Column = 
var new = 
RANKX(
    FILTER(
        'Sheet2',
        Sheet2[User] = EARLIER(Sheet2[User])
    ),
    Sheet2[Name].[Date],
    ,ASC,Dense
)
return 
IF(
    new=1,
    "N",
    BLANK()
)

qq7.PNG

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @amitchandak ,

 

Actually I don't want to rank the data but need to add a flag. Could you please use the same dataset and share the calculation?

 

Thanks

Hi @Anonymous ,

 

Yes, @amitchandak 's answer is right. you should do like this.

Column = 
var new = 
RANKX(
    FILTER(
        'Sheet2',
        Sheet2[User] = EARLIER(Sheet2[User])
    ),
    Sheet2[Name].[Date],
    ,ASC,Dense
)
return 
IF(
    new=1,
    "N",
    BLANK()
)

qq7.PNG

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.