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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hamzahad91
Helper I
Helper I

Calculating SUM of TOPN rows ?

I have two columns

 

Done     |   Objectif

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

2           |      8

4           |      6

6           |     14

null        |     12

null        |     11

null        |      9

..           |       ..

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

I would that I print the Sum of 3 first rows beause I done  column we have juste 3 rows (  every mounth a value get added )

I think that I should use something lik SUM (table1[Objectif(TopN(COUNTROWS[Done])]) But It's not the right expression

1 ACCEPTED SOLUTION

Hi @hamzahad91,

 

If your table is the one you posted here, maybe you could try this formula as a measure.

Measure =
CALCULATE ( SUM ( Table1[Objectif] ), ISBLANK ( Table1[Done] ) = FALSE () )

Or maybe you could add an index first, then it's easy to get the top three rows.

 

Measure 2 =
CALCULATE ( SUM ( Table1[Objectif] ), 'Table1'[Index] <= 2 )

Calculating SUM of TOPN rows.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
hamzahad91
Helper I
Helper I

Sorry I have made some mistakes I don't know how to mofify my post :

 

I would print the sum of 3 first rows beause in done column I have juste 3 rows (  every mounth a row will be added )

I think that I woulduse something like SUM (table1[Objectif(TopN(COUNTROWS[Done])]) But It's not the right expression

Here the result of my measure will be 28 ( 6+8+14 ).

Hi @hamzahad91,

 

If your table is the one you posted here, maybe you could try this formula as a measure.

Measure =
CALCULATE ( SUM ( Table1[Objectif] ), ISBLANK ( Table1[Done] ) = FALSE () )

Or maybe you could add an index first, then it's easy to get the top three rows.

 

Measure 2 =
CALCULATE ( SUM ( Table1[Objectif] ), 'Table1'[Index] <= 2 )

Calculating SUM of TOPN rows.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

CALCULATE ( SUM ( Table1[Objectif] ), ISBLANK ( Table1[Done] ) = FALSE () )

Can you explain me what does do the ISBLANK (Table1[Done] ) = FALSE() instruction ?

Hi @hamzahad91,

 

I have seen there were NULL values. Null is blank in Power BI unless you use it as a text. ISBLANK (Table1[Done] ) is going to check if "Table1[Done]" is blank. The return value of ISBLANK() is a Boolean, which is True or False. So "ISBLANK (Table1[Done] ) = FALSE()" return the first three rows, which isn't blank.

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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