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
mahantesh1988
Frequent Visitor

Client Journey – Compare the client’s performance with number of registrations over the time broken

Requirement: Client Journey – Compare the client’s performance with number of registrations over the time broken down by WEEK1, WEEK2, WEEK3,…..etc.

 

Important Note: This comparison need to be done with same period of client with another client. (Comparison example: Week1 – FFor Client1 – From 6th Aug’16 To 12th Aug’16 vs. Week1 – For Client2 – From 3rd Feb 16 To 10th Feb 16)

 

Expected:
CLient1-Week1-CustomerCount-9
Client2-Week1-CustomerCount-3

 

Client CustomerName RegistrationDate
Client1 J.V.Rizzi 6-Aug-16
Client1 NickOtto 7-Aug-16
Client1 AllanS.Roth 8-Aug-16
Client1 LauraAlix 8-Aug-16
Client1 ElizabethDexheimer 9-Aug-16
Client1 RonGoldstein 10-Aug-16
Client1 DavidVoreacos 10-Aug-16
Client1 JenA.Miller 10-Aug-16
Client1 SulemanDin 12-Aug-16
Client2 RaeShanahan 3-Feb-16
Client2 ElliotM.Kass 4-Feb-16
Client2 MarkDupont 8-Feb-16

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @mahantesh1988,

 

Create a calculated column:

WeekNo =
"Week"
    & INT (
        DATEDIFF (
            CALCULATE (
                MIN ( 'Client Table'[RegistrationDate] ),
                ALLEXCEPT ( 'Client Table', 'Client Table'[Client] )
            ),
            'Client Table'[RegistrationDate],
            DAY
        )
            / 7
    )
        + 1

2.PNG

 

Use a table visual to host data.

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

2 REPLIES 2
mahantesh1988
Frequent Visitor

Thank You so much. It looks fine

v-yulgu-msft
Employee
Employee

Hi @mahantesh1988,

 

Create a calculated column:

WeekNo =
"Week"
    & INT (
        DATEDIFF (
            CALCULATE (
                MIN ( 'Client Table'[RegistrationDate] ),
                ALLEXCEPT ( 'Client Table', 'Client Table'[Client] )
            ),
            'Client Table'[RegistrationDate],
            DAY
        )
            / 7
    )
        + 1

2.PNG

 

Use a table visual to host data.

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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.