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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Group by in Dax

 

SQL

Select BalanceDAte, Sum(CurrentBalance) FROM [dbo].[VW_RPT_PortfolioReview_6Month]
Where
Pool ='Java' AND

CATEGORY1 not in (
'Closed Full Redemption','Closed with remaining shortfall'
)
group by
BalanceDate

 

I want to group by BalanceDate,

 

 

CALCULATE(SUM(VW_RPT_PortfolioReview_6Month[CurrentBalance]),
FILTER( 
	ALLEXCEPT(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[POOL],VW_RPT_PortfolioReview_6Month[BalanceDate]), 
    VW_RPT_PortfolioReview[CATEGORY1]<>"Closed with remaining shortfall" 
		)
	)

I am confused when to use Sumx or Group by , why SumX is not grouping by Row 

 

Attempt at SUMX

CALCULATE(SUMX(FILTER(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[CATEGORY1] <>"Closed with remaining shortfall" && VW_RPT_PortfolioReview_6Month[CATEGORY1]<>"Closed Full Redemption"
), VW_RPT_PortfolioReview_6Month[CurrentBalance]),ALLEXCEPT(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[POOL]))

 

 

Attempt at Group BY

 

 

GROUPBY(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[BalanceDate],"Name",CALCULATE(SUM(VW_RPT_PortfolioReview_6Month[CurrentBalance]),
FILTER(
    ALLEXCEPT(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[POOL]),VW_RPT_PortfolioReview_6Month[CATEGORY1] <>"Closed with remaining shortfall" && VW_RPT_PortfolioReview_6Month[CATEGORY1]<>"Closed Full Redemption"
    )))
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Figured it out CALCULATE(SUMX(FILTER(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[CATEGORY1] <>"Closed with remaining shortfall" && VW_RPT_PortfolioReview_6Month[CATEGORY1]<>"Closed Full Redemption" ), VW_RPT_PortfolioReview_6Month[CurrentBalance]),ALLEXCEPT(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[POOL],VW_RPT_PortfolioReview_6Month[BalDateMonthName]))

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi

Very happy to see the issue solved by yourself.

It is very generous of you to share the solution here so that other prople may benefit from this thread.

 

Best Regards

Maggie

Anonymous
Not applicable

Figured it out CALCULATE(SUMX(FILTER(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[CATEGORY1] <>"Closed with remaining shortfall" && VW_RPT_PortfolioReview_6Month[CATEGORY1]<>"Closed Full Redemption" ), VW_RPT_PortfolioReview_6Month[CurrentBalance]),ALLEXCEPT(VW_RPT_PortfolioReview_6Month,VW_RPT_PortfolioReview_6Month[POOL],VW_RPT_PortfolioReview_6Month[BalDateMonthName]))

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.