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
Girish-Patil
Frequent Visitor

New customers names

I want to get the new added customers name this week i tried with many ways im not getting the requierd output can anyone help with this issue??

 

Dataset

Customer_nameStatedateStart of week
A1Regular01-01-202201-01-2022
A2Prime02-01-202201-01-2022
A3Elite03-01-202201-01-2022
A4Regular

0

4-01-2022

01-01-2022
A1Prime08-01-202208-01-2022
A2Prime09-01-202208-01-2022
A3Elite10-01-202208-01-2022
A4Elite11-01-202208-01-2022
A5Regular12-01-202208-01-2022
A6Regular13-01-202208-01-2022
A7Prime14-01-202208-01-2022

 

 

Required Output 1

Start of WeekNew Customers
08-01-2022A5, A6, A7

 

O/P 2

 08-01-2022
Regular 
PrimeA1
Elite

A4

1 ACCEPTED SOLUTION
eliasayyy
Memorable Member
Memorable Member

hello @Girish-Patil  
here is data

annonymous1999_0-1694163238817.png



here is first measure for first output 

New Customers = 
VAR CurrentWeek = MAX('Table'[Week])
RETURN
    CONCATENATEX(
        FILTER(
            SUMMARIZE('Table', 'Table'[Customer]),
            CALCULATE(
                MIN('Table'[Week]),
                ALLEXCEPT('Table', 'Table'[Customer])
            ) = CurrentWeek
        ),
        'Table'[Customer],
        ", "
    )

output 1 

annonymous1999_1-1694163338847.png

 

now for output 2 i didnt know hwo t oacheive it honestly 

@tamerj1 @some_bih  @ERD @technolog any ideas how he can get his second output?

View solution in original post

7 REPLIES 7
eliasayyy
Memorable Member
Memorable Member

hello @Girish-Patil  
here is data

annonymous1999_0-1694163238817.png



here is first measure for first output 

New Customers = 
VAR CurrentWeek = MAX('Table'[Week])
RETURN
    CONCATENATEX(
        FILTER(
            SUMMARIZE('Table', 'Table'[Customer]),
            CALCULATE(
                MIN('Table'[Week]),
                ALLEXCEPT('Table', 'Table'[Customer])
            ) = CurrentWeek
        ),
        'Table'[Customer],
        ", "
    )

output 1 

annonymous1999_1-1694163338847.png

 

now for output 2 i didnt know hwo t oacheive it honestly 

@tamerj1 @some_bih  @ERD @technolog any ideas how he can get his second output?

Thank you annonymous1999, It worked...!😃

@technolog i helped out for the first ouput however not sure about the second output

@technolog look at the first qiestion i am helping out the person he already has text data not image

haha @technolog its ok understandable

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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