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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
morgtd30
Helper I
Helper I

Making Matrix Table Aggregates Match

I have a column that shows the last date a contact was interacted with. I'm having that value being aggregated to "Latest" to have it display on the account it belongs to if the group is not expanded. I'm wondering if it's possible to have the other values that display be based on that column:

morgtd30_1-1661265334389.png

 

In this example, Human 3's date has the most recent activity date and displays at the top of the grouping. Is it possible to have it display the corresponding "948000004" and "Site Visit" at the top of the grouping from that row as well? 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @morgtd30 ,

 

You could use ISINSCOPE() function to return specific value at subtotal.

measure1 =
var max_date = calculate(max([date]),allexcept('table',[city]))
var max_column1 = calculate(max([column1]),FILTER(allexcept('table',[city]),[date] = max_date))

return
if(isinscope([human]),selectedvalue([column1]),max_column1)

The same for column2.

 

Best Regards,

Jay

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @morgtd30 ,

 

You could use ISINSCOPE() function to return specific value at subtotal.

measure1 =
var max_date = calculate(max([date]),allexcept('table',[city]))
var max_column1 = calculate(max([column1]),FILTER(allexcept('table',[city]),[date] = max_date))

return
if(isinscope([human]),selectedvalue([column1]),max_column1)

The same for column2.

 

Best Regards,

Jay

I fixed the issue. I had the wrong date field in the first var. It works perfectly now!

 

Changed to:

 

ActLastActivityType =
var max_date = calculate(max(contacts[wc_lastactivitydate]),allexcept(contacts,contacts[Account Name]))
var max_contactrole = calculate(max(contacts[wc_contactrole]),filter(allexcept(contacts,contacts[Account Name]),contacts[wc_lastactivitydate] = max_date))

return
if(isinscope(contacts[fullname]),selectedvalue(contacts[wc_contactrole]),max_contactrole)

Jay thank you for the help.
I'm not getting any values at summarized at the top for that new measure:

morgtd30_1-1661526851058.png

It should bring 948000004 to the top.

Here's an example of how my tables are built:

Account Name
City 1
City 2

 

Contact NameAccount NameContact RoleContact TypeContact Date
Human 1City 1948000000E-Mail8/8/2022
Human 2City 1948000002E-Mail8/7/2022
Human 3City 1948000004Site Visit8/18/2022
Human 4City 1948000010E-Mail 

 

Here's my measure:

ActLastActivityType =
var max_date = calculate(max('Date'[Date]),allexcept(contacts,contacts[Account Name]))
var max_contactrole = calculate(max(contacts[wc_contactrole]),filter(allexcept(contacts,contacts[Account Name]),contacts[wc_lastactivitydate] = max_date))

return
if(isinscope(contacts[fullname]),selectedvalue(contacts[wc_contactrole]),max_contactrole)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.