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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Count the number of values in a table

Hello

I try to figure out to do one simple thing and I would greatly appreciate any help.

 

I have a table like this :

 

Calendrier.[DATE]Calendrier.[Duration]
dd/mm/YYYY7
dd/mm/YYYY7,5
dd/mm/YYYY8
dd/mm/YYYY7,5
......

 

I would like to count the number of lines where the value equals 7,5 and the total number of lines.

Thank you for your help

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thank you so much for your solution.

Makes me want to quickly improve my skills with powerBI.

View solution in original post

4 REPLIES 4
jdbuchanan71
Super User
Super User

Total Lines = COUNTROWS(Calendrier)

 

7,5 lines = CALCULATE ( COUNTROWS(Calendrier), KEEPFILTERS(Calendrier[Duration] = 7,5 ) )
Anonymous
Not applicable

Hello thank you for your help.

 

The first formula works fine but the second doesn't, because I wasn't precise enough, I'm sorry.

 

My table is built like this :

- a date --> a duration

- a date --> a duration

- a date --> à duration

 

Sometimes, the date is the same (i can have several recording for, let's say, 2020/04/01 and I printed the total sum of the duration for this date).

 

That means i summed up several recordings to obtain this result.

 

Calendrier.[DATE]Calendrier.[Duration]
dd/mm/YYYY7
dd/mm/YYYY7,5
dd/mm/YYYY8
dd/mm/YYYY7,5
......

 

Now I would like to have the number of lines where the sum of the duration, for each day, equals 7,5.

 

I really hope my explanations were clear enough.

 

Best regards

 

Anonymous
Not applicable

Thank you so much for your solution.

Makes me want to quickly improve my skills with powerBI.

In my example I have a measure called [DurationSum]

DurationSum = SUM ( Calendrier[Duration] )

 Then this measure will count the rows where DurationSum = 7,5

7,5 count =
COUNTROWS (
    FILTER (
        ADDCOLUMNS ( VALUES ( Calendrier[Date] ), "x", [DurationSum] ),
        [x] = 7,5
    )
)

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors