Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Hi @antlufc
Please refer to attached sample file with the proposed solution
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]
)
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |