Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
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!