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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
setis
Post Partisan
Post Partisan

Date of last email

Hi all,

 

I have a table of [Activities] with the columns "Case ID", "Activity Type" and "Created On", The "Activity types" can be "email", "phone call", etc... 

 

I need to pull a table of cases with the Case ID and the date of the last email 

 

I've created a measure:  LatestActivity = MAX(Activities[createdon])

 

It is working for me as a calculated column: 

LastEmail = CALCULATE(MAX(Activities[createdon]);Activities[ActivityType]="Email")

 

But not as a measure: 

Latest email = CALCULATE ([LatestActivity]; FILTER(Activities;Activities[ActivityType]="Email"))
 
The result that I'm obtaining is the last email of the whole activity table, not row by row. 
 
Could somebody help, please?
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi@setis

Create a measure

Measure = CALCULATE(MAX([Created On]),FILTER(ALLEXCEPT(Sheet10,Sheet10[Case ID]),[Activity Type]="email"))

9.png

 

 

Best Regards

Maggie

 

Community Support Team _ Maggie Li
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

3 REPLIES 3
v-juanli-msft
Community Support
Community Support

Hi@setis

Create a measure

Measure = CALCULATE(MAX([Created On]),FILTER(ALLEXCEPT(Sheet10,Sheet10[Case ID]),[Activity Type]="email"))

9.png

 

 

Best Regards

Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Stachu
Community Champion
Community Champion

measure will always give you single value for a given filter context, therefore if you have a visual that gived single value it will do exactly that
if you create a table in which emails are in rows then each row will have a different filter context, and the measure should return different values for them



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

AlB
Super User
Super User

Hi @setis

I'm a bit confused because from what you describe I believe your measure should work but your column shouldn't. Exactly the opposite of what you claim Smiley Happy

 

The calc column would need to get rid of the context transition effect to work properly. Otherwise it will calculate the max only on the current row when the activity is email.

The measure, however, looks fine to me. How/where exactly are you using it? If you place Activities[Case ID] in the rows of a matrix visual for instance and the measure in values, I see no reason for it not to work (with the info you provide).

 

Your description is quite good but remember it's always best to show a sample of your tables/data in text format. It's very helpful for people trying to answer. Or sharing the pbix if possible     

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.