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
Anonymous
Not applicable

Applying aggregated card value into the table

Hi everyone,

I struggle with the problem.

I need to apply calcultion of this card to a table below. Every row should get the same value as from card.
Somehow It's not working, there is still applying context to each row.
my measures:

YTD Average Delay = TOTALYTD(AVERAGE('Table1'[Delayed Days]),'Date Created'[Date])
MEASURE 1 = CALCULATE([YTD Average Delay], ALL('Table1'[RowNumber]))

MEASURE 2 = 28 - Dummy measure just to demo - this is what I want to achieve, card YTD value the same in each row.

jansdc_0-1633999190853.png

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

Try this measure

YTD Average Delay =
CALCULATE (
    TOTALYTD ( AVERAGE ( 'Table1'[Delayed Days] ), 'Date Created'[Date] ),
    ALLSELECTED ( 'Table1' )
)

 

The ALLSELECTED function gets the context that represents all rows and columns in the query, while keeping explicit filters and contexts other than row and column filters. This function can be used to obtain visual totals in queries.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

Try this measure

YTD Average Delay =
CALCULATE (
    TOTALYTD ( AVERAGE ( 'Table1'[Delayed Days] ), 'Date Created'[Date] ),
    ALLSELECTED ( 'Table1' )
)

 

The ALLSELECTED function gets the context that represents all rows and columns in the query, while keeping explicit filters and contexts other than row and column filters. This function can be used to obtain visual totals in queries.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

VahidDM
Super User
Super User

Hi @Anonymous 

 

try this:

YTD Average Delay = calculate(TOTALYTD(AVERAGE('Table1'[Delayed Days]),'Date Created'[Date]),REMOVEFILTERS([Customer Country]))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

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.