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
Gabe_07
Helper I
Helper I

Get Percentage for a specific colunm

Hello everyone, 

I'm trying to get the percentages of the percentage of specific columns but Power Bi is getting the percentage across the row instead of a single colunm.

Question.png

 


-------------------------------------------------------------------------------------------

AF % (DAX) = 

AF % =
VAR __BASELINE_VALUE = [Total Weight]
VAR __VALUE_TO_COMPARE = SUM('BatchHeaders'[AF Column])
RETURN
    IF(
        NOT ISBLANK(__VALUE_TO_COMPARE),
        DIVIDE(__VALUE_TO_COMPARE - __BASELINE_VALUE, __BASELINE_VALUE) * -1
    )
----------------------------------------------------------------------------------
 
AZ % (DAX) =
VAR __BASELINE_VALUE = [Total Weight]
VAR __VALUE_TO_COMPARE = SUM('BatchHeaders'[AZ Column])
RETURN
    IF(
        NOT ISBLANK(__VALUE_TO_COMPARE),
        DIVIDE(__VALUE_TO_COMPARE - __BASELINE_VALUE, __BASELINE_VALUE) * -1
    )
 
 
I'd appreciated if anyone could help me. Thank you
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Gabe_07 , Try something like this

divide(SUM('BatchHeaders'[AF Column]) , calculate( [Total Weight], allselected('BatchHeaders')))

divide(SUM('BatchHeaders'[AZ Column]) , calculate( [Total Weight], allselected('BatchHeaders')))

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Gabe_07 , Try something like this

divide(SUM('BatchHeaders'[AF Column]) , calculate( [Total Weight], allselected('BatchHeaders')))

divide(SUM('BatchHeaders'[AZ Column]) , calculate( [Total Weight], allselected('BatchHeaders')))

Thank you so much @amitchandak, your DAX really helped me! 

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.