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 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_name | State | date | Start of week |
A1 | Regular | 01-01-2022 | 01-01-2022 |
A2 | Prime | 02-01-2022 | 01-01-2022 |
A3 | Elite | 03-01-2022 | 01-01-2022 |
A4 | Regular | 0 4-01-2022 | 01-01-2022 |
A1 | Prime | 08-01-2022 | 08-01-2022 |
A2 | Prime | 09-01-2022 | 08-01-2022 |
A3 | Elite | 10-01-2022 | 08-01-2022 |
A4 | Elite | 11-01-2022 | 08-01-2022 |
A5 | Regular | 12-01-2022 | 08-01-2022 |
A6 | Regular | 13-01-2022 | 08-01-2022 |
A7 | Prime | 14-01-2022 | 08-01-2022 |
Required Output 1
Start of Week | New Customers |
08-01-2022 | A5, A6, A7 |
O/P 2
08-01-2022 | |
Regular | |
Prime | A1 |
Elite | A4 |
Solved! Go to Solution.
hello @Girish-Patil
here is data
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
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?
hello @Girish-Patil
here is data
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
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...!😃
@eliasayyy please paste it in text mode, not like screenshots
@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
@eliasayyy Oh, sorry! I guess I'm not awake yet!😅
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
11 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |