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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Fix sum of percentage when selecting multiple date

This is my powerbi file:
https://1drv.ms/u/s!Ag9tIyk2ofNRjk0p_3vuRsnAuARs?e=TQjlu3

these are some pics:

revtable.png

week40.png

week41.png

both weeks.png

  

here's my meausre:

Percentage = 
var NEWtotalrevenue = CALCULATE(SUM(Revenue[Total]),FILTER('Calendar','Calendar'[Date] >= DATE(2022,10,3)))
VAR OLDtotalrevenue = CALCULATE(SUMX(Revenue,Revenue[Amount]*Revenue[Qtty]),FILTER('Calendar','Calendar'[Date] < DATE(2022,10,3)))
VAR totalrevenue = OLDtotalrevenue + NEWtotalrevenue
Var newsalesmanrevenue = CALCULATE(SUM(Revenue[Total]),FILTER('Calendar','Calendar'[Date] >= DATE(2022,10,3)),Revenue[Salesman]="A")
VAR Oldsalesmanrevenue = CALCULATE(SUMX(Revenue,Revenue[Amount]*Revenue[Qtty]),FILTER('Calendar','Calendar'[Date] < DATE(2022,10,3)),Revenue[Salesman]="A")
VAR salesmanrevenue = Oldsalesmanrevenue + newsalesmanrevenue
return
salesmanrevenue/totalrevenue

 

my issue is weh ni select week 40 and week 41, i want the percentage to be 1.01 not 0.51

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please try to create a measure like below.

 

Percentage V2 =
SUMX (
    DISTINCT ( 'Calendar'[Week of Year] ),
    DIVIDE (
        CALCULATE (
            SUM ( Revenue[Total] ),
            FILTER ( 'Calendar', 'Calendar'[Date] >= DATE ( 2022, 10, 3 ) ),
            Revenue[Salesman] = "A"
        )
            + CALCULATE (
                SUMX ( Revenue, Revenue[Amount] * Revenue[Qtty] ),
                FILTER ( 'Calendar', 'Calendar'[Date] < DATE ( 2022, 10, 3 ) ),
                Revenue[Salesman] = "A"
            ),
        CALCULATE (
            SUM ( Revenue[Total] ),
            FILTER ( 'Calendar', 'Calendar'[Date] >= DATE ( 2022, 10, 3 ) )
        )
            + CALCULATE (
                SUMX ( Revenue, Revenue[Amount] * Revenue[Qtty] ),
                FILTER ( 'Calendar', 'Calendar'[Date] < DATE ( 2022, 10, 3 ) )
            )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

Please try to create a measure like below.

 

Percentage V2 =
SUMX (
    DISTINCT ( 'Calendar'[Week of Year] ),
    DIVIDE (
        CALCULATE (
            SUM ( Revenue[Total] ),
            FILTER ( 'Calendar', 'Calendar'[Date] >= DATE ( 2022, 10, 3 ) ),
            Revenue[Salesman] = "A"
        )
            + CALCULATE (
                SUMX ( Revenue, Revenue[Amount] * Revenue[Qtty] ),
                FILTER ( 'Calendar', 'Calendar'[Date] < DATE ( 2022, 10, 3 ) ),
                Revenue[Salesman] = "A"
            ),
        CALCULATE (
            SUM ( Revenue[Total] ),
            FILTER ( 'Calendar', 'Calendar'[Date] >= DATE ( 2022, 10, 3 ) )
        )
            + CALCULATE (
                SUMX ( Revenue, Revenue[Amount] * Revenue[Qtty] ),
                FILTER ( 'Calendar', 'Calendar'[Date] < DATE ( 2022, 10, 3 ) )
            )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

thank you very much now i want to ask 
i have expense table for week 40 total is 1000
while week 41 total is 1100

i was to make when i select week 40 and week 41 together,
to make a calculations 
(percentage week 40 * expense week 40 ) + (percentage week 41 * expense week 41)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.