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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
danielcontente
Helper II
Helper II

Last week in the table calculation

Hi, i have the following table, and would like to create a measure in which i will divide each item in the column "#Total Accumulative Amount" by the value in the column "Max Expected Amount" (26,834,488)

danielcontente_0-1672913026854.png

The desired result should be a column with the following numbers:

danielcontente_1-1672913083745.png

 

Thank you so much in advance.

 

1 ACCEPTED SOLUTION

@danielcontente 

Please try

=
DIVIDE (
[#Total Accumulative Amount],
MAXX (
TOPN (
1,
ADDCOLUMNS (
ALLSELECTED ( 'Date'[Year Week number] ),
"@MaxAmount", [#Max Amount]
),
'Date'[Year Week number]
),
[@MaxAmount]
)
)

View solution in original post

7 REPLIES 7
danielcontente
Helper II
Helper II

working perfectly!!

 

appreciated it @tamerj1 

tamerj1
Super User
Super User

Hi @danielcontente 
Please try

=
DIVIDE (
    [#Total Accumulative Amount],
    CALCULATE ( [#Total Accumulative Amount], ALL ( 'Date'[Year Week number] ) )
)

Thanks so much @tamerj1 

however, i use a slicer for week, so if i filter for week 52, for example, there would be a new #max expected amount in week 52 and not 53. In this case, how can i do in order to consider the max value in the table depending on the filter?

example:

If i filter for week 52, then the table below would show only until week 52, and therefore all the values in the column "#Total Accumulative Amount" should be divided by the #Max Amount of week 52..

danielcontente_0-1672931956143.png

 

@danielcontente 

Try

=
DIVIDE (
[#Total Accumulative Amount],
CALCULATE (
[#Total Accumulative Amount],
ALLSELECTED ( 'Date'[Year Week number] )
)
)

Hi @tamerj1 

it didnt work.

It keeps dividing by the max amount not the amount of the max week.

Example:

because the amount in week 52 > week 53, even if a select week 53, it will divide by the amount of week 52.

@danielcontente 

Please try

=
DIVIDE (
[#Total Accumulative Amount],
MAXX (
TOPN (
1,
ADDCOLUMNS (
ALLSELECTED ( 'Date'[Year Week number] ),
"@MaxAmount", [#Max Amount]
),
'Date'[Year Week number]
),
[@MaxAmount]
)
)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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