Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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"
)
)