Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All, I'm working on analysis of outage reports and I have an Event query with an event ID, as well as an EventDetail query with matching ID, timestamp, type (Identified, Scheduled, Investigating, Resolved, Monitoring, Postmortem), and details. I want to add a measure/column to the Event query that determines whether the event was scheduled.
I assume this is DAX but I'm very new to it and could use a pointer on how to get a Scheduled column in Event with True/False based on whether any corresponding EventDetail rows have Scheduled in the Type column.
Solved! Go to Solution.
Create a measure
Scheduled = CONTAINS(your table,your column (e.g. type),"Scheduled")
Hi @Anonymous,
Can you share a sample?
Best Regards,
Dale
Create a measure
Scheduled = CONTAINS(your table,your column (e.g. type),"Scheduled")
Awesome, thanks!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.