Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

DIVISION OF VALUES IN THE SAME COLUMN OF A TABLE

Hello All,

 

We are not able to calculate the below requirement. Please guide us.

 

100.PNG

 

 

 

 

We want the requirement as :

a) 5 divided by 7 and the result should be 71%

b) 5 divivded by 20 and the result should be 25%

c) 16 divivded by 31 and the result should be 52%

d) 55 divided by 63 and the result should be 87%

 

Thanks in Advance.

 

Regards,

Vivek Chavan.

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @Anonymous

 

You may try to use HASONEVALUE Function to create measures to get the percent as requested. For example:

 

Percent1 =
IF (
    HASONEVALUE ( total[Index] ),
    MAX ( total[a] ),
    DIVIDE (
        SUMX ( FILTER ( total, total[Index] = 1 ), total[a] ),
        SUMX ( FILTER ( total, total[Index] = 2 ), total[a] )
    )
)

1.png

 

Regards,

Cherie

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

1 REPLY 1
v-cherch-msft
Employee
Employee

Hi @Anonymous

 

You may try to use HASONEVALUE Function to create measures to get the percent as requested. For example:

 

Percent1 =
IF (
    HASONEVALUE ( total[Index] ),
    MAX ( total[a] ),
    DIVIDE (
        SUMX ( FILTER ( total, total[Index] = 1 ), total[a] ),
        SUMX ( FILTER ( total, total[Index] = 2 ), total[a] )
    )
)

1.png

 

Regards,

Cherie

Community Support Team _ Cherie 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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.