Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi there!
I am somewhat new to DAX and I am running into an issue:
I am using the "Opportunities Table" from the Regional Sales Sample pbix file and I am trying to do the following:
In the above table that I have created, for each Purchasing Process and Sales Stage, I wanted to know the earliest created date.
The DAX that I created for the "Earliest Created Date" was as follows:
Solved! Go to Solution.
Hi @MRUGLADIATOR,
Please try this DAX formula:
SUM Value EarliestDate =
VAR _EarliestDate = [Earliest Created Date]
VAR _Table =
FILTER(
Opportunities,
[Opportunity Created On] = _EarliestDate
)
VAR _Result =
SUMX(
_Table,
Opportunities[Value]
)
RETURN
_Result
The final output should be this:
I'm attaching the pbix file with my solution.
Proud to be a Super User!
Hi @MRUGLADIATOR,
Please try this DAX formula:
SUM Value EarliestDate =
VAR _EarliestDate = [Earliest Created Date]
VAR _Table =
FILTER(
Opportunities,
[Opportunity Created On] = _EarliestDate
)
VAR _Result =
SUMX(
_Table,
Opportunities[Value]
)
RETURN
_Result
The final output should be this:
I'm attaching the pbix file with my solution.
Proud to be a Super User!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |