This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA 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.
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
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
Solved! Go to Solution.
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]))
Regards,
Xiaoxin Sheng
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!
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]))
Regards,
Xiaoxin Sheng
Hi @jorismo,
Just do the sum on available day, should give you what you need.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 48 | |
| 27 | |
| 21 | |
| 20 |