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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
antlufc
Frequent Visitor

Value Based on Max Date from Another Column

Hi, 

I am looking to find a DAX measure/measures that will let me find the value of a sales lead based upon the max date time only if there is more than one entry in the same month. I do not want to find the value of the max date time associated with each lead as i am trending them based upon date as to when closed dates have been moved forward or backwards. I have attached a sample excel file with data and column names as per my PBI report.  I have highlighted in yellow those that i would expect to see as the single value. https://1drv.ms/f/s!AivZWzcfJJzngTyP6aMWz0rJKWXU 

antlufc_0-1682494538748.png

 

1 REPLY 1
tamerj1
Super User
Super User

Hi @antlufc 
Please refer to attached sample file with the proposed solution

3.png

Measure = 
SUMX ( 
    SUMMARIZE ( 'Table', 'Table'[pipeline_journey_id], 'Table'[event_date] ),
    MAXX ( 
        INTERSECT ( 
            'Table',
            TOPN ( 
                1,
                CALCULATETABLE ( 
                    'Table', 
                    ALLEXCEPT ( 'Table', 'Table'[pipeline_journey_id],'Table'[event_date] ) 
                ),
                'Table'[event_datetime]
            )
        ),
        'Table'[amount_average_contract_value]
    )
)

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.