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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
jorismo
Helper II
Helper II

Count values depending on a condition

Hi all,

 

my next question 🙂

 

I've got a table with dates and available status (1 and 0.5).

 

What I want to achieve is when I plot the values in an area chart I see that on the 4the of january, 4.5 persons were available. On the 5th 8 persons were available.

 

First Login                        Total Time             Available Day

Screenshot_4.png

 

In first case I was thinking to use the countRow function but that would be a problem because the 0.5 (half day) wouldn't be counted correctly (would be counted as 1)

 

Thanks again

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @MFelix,

 

Maybe you can try to use summarize function to create a summary table:

Table = SUMMARIZE(Table1,[Date],"Total Day",SUM(Table1[Avaliable Days]))

17.PNG

 

Regards,

Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

HI @jorismo

 

If you use numeric value to record available days, I think you can use sum function to get the total available days. 

 

Sample:

Total available days =
CALCULATE (
    SUM ( table[avaliable days] ),
    FILTER ( ALL ( table ), table[First login] = MAX ( table[First login] ) )
)

 

In addition, you can also add filters to calculate with available day as the parameter of calculation. ( countrows *1 + countrows * 0.5)

 

Regards,

Xiaoxin Sheng

Hi I can't get it working.

 

The result that i want is that I can plot this to an area chart where also some kpi's are shown.

 

Result:

First login                 Available

4/01/2017                  4,5

5/01/2017                  8

 

Hope that you can give me some more advice thanks!

Anonymous
Not applicable

Hi @MFelix,

 

Maybe you can try to use summarize function to create a summary table:

Table = SUMMARIZE(Table1,[Date],"Total Day",SUM(Table1[Avaliable Days]))

17.PNG

 

Regards,

Xiaoxin Sheng

MFelix
Super User
Super User

Hi @jorismo,

 

Just do the sum on available day, should give you what you need.

 

Regards,

 

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.