Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hi guys,
Im crushing my head with following issue in PBI.
I have data in column DTM which contains numeric and text values.
I need to count of DTM items which are in range 0 to 10, their Status is Open and its numeric value only (DTM column)
Results would look like - Count: 2
Any idea how DAX formula should look like?
Thanks
Solved! Go to Solution.
You can create a measure like
Num Open =
COUNTROWS (
FILTER (
'Table',
VAR numVal =
IFERROR ( VALUE ( 'Table'[DTM] ), BLANK () )
RETURN
numVal >= 0
&& numVal <= 10
&& 'Table'[Status] = "Open"
)
)
You can create a measure like
Num Open =
COUNTROWS (
FILTER (
'Table',
VAR numVal =
IFERROR ( VALUE ( 'Table'[DTM] ), BLANK () )
RETURN
numVal >= 0
&& numVal <= 10
&& 'Table'[Status] = "Open"
)
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
76 | |
70 | |
49 | |
42 |
User | Count |
---|---|
62 | |
40 | |
32 | |
30 | |
29 |