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
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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.