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
I created a measure off the data below --> (Number# = COUNT(Table[ID])).
How to create a new measure off the Number# measure to ID column CONTAINS "CHG" and Status = "Scheduled"?
ID | Status |
INC029779 | Closed |
INC065546436 | Open |
INC131063093 | Scheduled |
INC196579750 | Closed |
SCTASK004566 | Open |
SCTASK004567 | Scheduled |
INC020534543 | Closed |
CHG00354333 | Open |
INC0267456423 | Scheduled |
SCTASK0068666 | Closed |
CHG00348765 | Open |
CTASK0356544 | Scheduled |
SCTASK006564 | Closed |
SCTASK006565 | Open |
SCTASK006566 | Scheduled |
CHG005634537 | Closed |
CHG005634538 | Open |
Solved! Go to Solution.
Try this
NewMeasure =
CALCULATE (
COUNTROWS ( TableName ),
CONTAINSSTRING ( TableName[ID], "CHG" ),
TableName[Status] = "Scheduled"
)
Try this
NewMeasure =
CALCULATE (
COUNTROWS ( TableName ),
CONTAINSSTRING ( TableName[ID], "CHG" ),
TableName[Status] = "Scheduled"
)
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.
User | Count |
---|---|
110 | |
82 | |
62 | |
54 | |
51 |
User | Count |
---|---|
127 | |
118 | |
81 | |
65 | |
64 |