Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
I would like to count row that contain month January, then feb and so on. However the data that i have is not structured. Some are January. Some are January- February. Any shortcuts?
Column =
If(
CONTAINSSTRING('Table'[Month], "January")
|| CONTAINSSTRING('Table'[Month], "February")
|| CONTAINSSTRING('Table'[Month], "March")
|| CONTAINSSTRING('Table'[Month], "April")
|| CONTAINSSTRING('Table'[Month], "May")
|| CONTAINSSTRING('Table'[Month], "June")
|| CONTAINSSTRING('Table'[Month], "July")
|| CONTAINSSTRING('Table'[Month], "August")
|| CONTAINSSTRING('Table'[Month], "September")
|| CONTAINSSTRING('Table'[Month], "October")
|| CONTAINSSTRING('Table'[Month], "November")
|| CONTAINSSTRING('Table'[Month], "December"),
1,
0
)
Then create a measure in which you can do 2 things to get the countrows of requirement.
Measure2 = CALCULATE( COUNTROWS('Table'), 'Table'[Column]=1)
or
CountRowsMeasure = SUM('Table'[Column])
Thank you.
If my answer helps you, please mark it as solution.
Hi @Nyxza
I hope this is what you're looking for
Please refer to attached sample file with the proposed solution
Month Count =
SUMX (
VALUES ( 'Month Filter'[Month] ),
COUNTROWS (
FILTER (
'Table',
CONTAINSSTRING ( 'Table'[Month], 'Month Filter'[Month] )
)
)
)
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
30 | |
15 | |
11 | |
10 | |
9 |