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
ghutchins
Helper II
Helper II

Total Rows by Hierarchy Data Column

I am trying to sum up values in for a row across eventually  12 date columns in the last table.  The values are calculated measures from other data columns.  I cannot seem to get over this hurdle and hope there is help out there somwhere.   Any help is appreciated be it a resouce or suggested code.

 GC_Image.PNG

2 ACCEPTED SOLUTIONS
Mikelytics
Resident Rockstar
Resident Rockstar

HI @ghutchins 

 

Without seeing the data model I have to do some assumptions but it should be something like this:

 

Final Measure = 
SUMX(
   VALUES(DateTable[Month]),
   [Count MA > 4 (Count)]
)

 

Do you use a proper date table?

 

Best regards

Michael

-----------------------------------------------------

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

View solution in original post

Thanks your suggestion lead me to the answer...  

Count MA > 4 (Count all) =
SUMX(
   VALUES('GoodCatch Data'[submitted_date].[Month]),
   [Count MA > 4 (Count)]
)

View solution in original post

2 REPLIES 2
Mikelytics
Resident Rockstar
Resident Rockstar

HI @ghutchins 

 

Without seeing the data model I have to do some assumptions but it should be something like this:

 

Final Measure = 
SUMX(
   VALUES(DateTable[Month]),
   [Count MA > 4 (Count)]
)

 

Do you use a proper date table?

 

Best regards

Michael

-----------------------------------------------------

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

Thanks your suggestion lead me to the answer...  

Count MA > 4 (Count all) =
SUMX(
   VALUES('GoodCatch Data'[submitted_date].[Month]),
   [Count MA > 4 (Count)]
)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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