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

Adoption %

Hi @amitchandak ,

This is what I shared in the other post.

I have the following Table Data:

CUST SAP NumberRunYearMonthC17 VolumeC10 Volume
1112020M0736
1122020M07510
1132020M07-8
1112020M0810-
1122020M0811-
1132020M081020

 

 

Requested Output (in BOLD😞 Adoption basically,  what  % of total(count) of customers was creating the volume *every month*..

 

RunYearMonthC17 Adoption C10 Adoption
2020M0766%100%
2020M08100%33%
   

 

thanks!

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous 

1. Make sure that the "-" in your data are blanks

2. Place Table1[CUST SAP Number] in a table visual

3. Create these measures and place them in the visual

C17 adoption = 
DIVIDE (
    COUNTROWS (
        FILTER (
            DISTINCT ( Table1[CUST SAP Number] ),
            CALCULATE ( SUM ( Table1[C17 Volume] ) ) <> 0
        )
    ),
    DISTINCTCOUNT ( Table1[CUST SAP Number] )
)
C10 adoption = 
DIVIDE (
    COUNTROWS (
        FILTER (
            DISTINCT ( Table1[CUST SAP Number] ),
            CALCULATE ( SUM ( Table1[C10 Volume] ) ) <> 0
        )
    ),
    DISTINCTCOUNT ( Table1[CUST SAP Number] )
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

C17 Volume Adopt % = divide(count(Table[C17 Volume]),countrows(Table))

 

C10 Volume Adopt % = divide(count(Table[C10 Volume]),countrows(Table))

AlB
Super User
Super User

Hi @Anonymous 

1. Make sure that the "-" in your data are blanks

2. Place Table1[CUST SAP Number] in a table visual

3. Create these measures and place them in the visual

C17 adoption = 
DIVIDE (
    COUNTROWS (
        FILTER (
            DISTINCT ( Table1[CUST SAP Number] ),
            CALCULATE ( SUM ( Table1[C17 Volume] ) ) <> 0
        )
    ),
    DISTINCTCOUNT ( Table1[CUST SAP Number] )
)
C10 adoption = 
DIVIDE (
    COUNTROWS (
        FILTER (
            DISTINCT ( Table1[CUST SAP Number] ),
            CALCULATE ( SUM ( Table1[C10 Volume] ) ) <> 0
        )
    ),
    DISTINCTCOUNT ( Table1[CUST SAP Number] )
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

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.

Top Solution Authors