Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi all,
I am having a problem with filter in Power BI
I have a dataset called "Procedure - Power BI". In this dataset is a column called "aantal sollicitanten" and a column called "sollicitatie na start".
How do I only count the "aantal sollicitanten" if "Sollicitatie na start" is a number below 7?
Can anyone help?
Solved! Go to Solution.
Measure = CALCULATE(COUNT('Table'[aantal sollicitanten]),FILTER('Table','Table'[Sollicitatie na start]>7))
Measure = CALCULATE(COUNT('Table'[aantal sollicitanten]),FILTER('Table','Table'[Sollicitatie na start]>7))
Thank you so much!
Just a quick follow-up question. If I just wanted to count the fields with no entry, what would the measure be?
Hi @Reimer ,
With no entry means, that value will be blank. For that try this measure..
Measure =
CALCULATE (
COUNT ( 'Table'[aantal sollicitanten] ),
'Table'[Sollicitatie na start] = BLANK ()
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
71 | |
68 | |
50 | |
30 |
User | Count |
---|---|
119 | |
101 | |
73 | |
65 | |
40 |