Forum Discussion
CraigC
8 years agoHelper I
Opened vs closed column chart with date filter
Hi All, I am trying to create something like the below where i can compare how many incidents were opened per a day and how many incidents were closed per day. I have a column called Open Date an...
- 8 years ago
create a measure for closed incident using userelationship function like below and use this on visual
Closed Incidents = Calculate(Count(Table1[Incident]), UseRelationship(Table1[CloseDate], Calendar[Date]) )
parry2k
8 years agoSuper User
create a measure for closed incident using userelationship function like below and use this on visual
Closed Incidents = Calculate(Count(Table1[Incident]), UseRelationship(Table1[CloseDate], Calendar[Date]) )
Wkbdrguy
7 years agoMicrosoft Employee
Been trying to use this formula but trying not to count rows for closed dates that are blank as the incidents are not closed yet.