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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.