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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
swellman
New Member

Trying to find the latest date from table with multiple values

I'm trying to populate a cell with the latest date. The issue is that some cells have multiple dates and that's throwing this error: "A table of multiple values was supplied where a single value was expected." Here's my formula:

 
SNE = LOOKUPVALUE(Event[ActivityDate],Event[Account/Opp Id],Opportunity[Id])
 
The Event table has multiple lines for an Opportunity. Thanks in advance.
1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@swellman 

 

Try this

 

SNE =
CALCULATE (
    MAX ( Event[ActivityDate] ),
    FILTER ( Event, Event[Account/Opp Id] = Opportunity[Id] )
)

 


Regards
Zubair

Please try my custom visuals

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@swellman 

 

Try this

 

SNE =
CALCULATE (
    MAX ( Event[ActivityDate] ),
    FILTER ( Event, Event[Account/Opp Id] = Opportunity[Id] )
)

 


Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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