The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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"
)
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
81 | |
81 | |
48 | |
41 |
User | Count |
---|---|
149 | |
110 | |
66 | |
64 | |
56 |