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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I have already creatd the summarize table with below columns (step1), And my
step 2 is to find the min value from the different strategy and same name.
Step 3 : Final out put is, Total Number of strategy from my first step and overlap count from the second step.
Step 3 is my expected output in the calculated table.
Solved! Go to Solution.
Hi,
Thank you for your message.
It is for creating a new table, and not for a measure.
Hi,
I am not sure if my DAX formula meets your need, but I created the below picture and the attached pbix file based on the sample.
It is for creating a new table.
New Table =
VAR _newtable =
FILTER (
Data,
COUNTROWS ( FILTER ( Data, Data[Name] = EARLIER ( Data[Name] ) ) ) = 2
)
VAR _minvaluetable =
CALCULATETABLE (
Data,
TREATAS (
GROUPBY (
_newtable,
Data[Date],
Data[Name],
"@MinValue", MINX ( CURRENTGROUP (), Data[SumofValues] )
),
Data[Date],
Data[Name],
Data[SumofValues]
)
)
RETURN
ROW (
"AppleTotal", COUNTROWS ( FILTER ( Data, Data[Strategy] = "Apple" ) ),
"MangoTotal", COUNTROWS ( FILTER ( Data, Data[Strategy] = "Mango" ) ),
"Overlap", COUNTROWS ( _minvaluetable )
)
Hi Jihwan,
Thank you for your coding. It almost working, i'm at the final stage. In step 3 i need to add the total row. Kindly help me on this final step.
Hi,
Please check the attached file and the below DAX formula to create a new table.
New Table =
VAR _newtable =
FILTER (
Data,
COUNTROWS ( FILTER ( Data, Data[Name] = EARLIER ( Data[Name] ) ) ) = 2
)
VAR _minvaluetable =
CALCULATETABLE (
Data,
TREATAS (
GROUPBY (
_newtable,
Data[Date],
Data[Name],
"@MinValue", MINX ( CURRENTGROUP (), Data[SumofValues] )
),
Data[Date],
Data[Name],
Data[SumofValues]
)
)
VAR _appletotal =
{ COUNTROWS ( FILTER ( Data, Data[Strategy] = "Apple" ) ) }
VAR _mangototal =
{ COUNTROWS ( FILTER ( Data, Data[Strategy] = "Mango" ) ) }
VAR _overlap =
{ COUNTROWS ( _minvaluetable ) }
VAR _minvalueappletotal =
{
SUMX ( FILTER ( _minvaluetable, Data[Strategy] = "Apple" ), Data[SumofValues] )
}
VAR _minvaluemangototal =
{
SUMX ( FILTER ( _minvaluetable, Data[Strategy] = "Mango" ), Data[SumofValues] )
}
VAR _totaloverlap =
{ SUMX ( _minvaluetable, Data[SumofValues] ) }
RETURN
UNION (
ROW (
"AppleTotal", _appletotal,
"MangoTotal", _mangototal,
"Overlap", _overlap
),
ROW (
"AppleTotal", _minvalueappletotal,
"MangoTotal", _minvaluemangototal,
"Overlap", _totaloverlap
)
)
Hi Jihwan Sir,
It is not showing the second row.
Hi,
Thank you for your message.
It is for creating a new table, and not for a measure.
Thank you Jihwan 🙂
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.