Forum Discussion
Julius410
4 years agoFrequent Visitor
Time Specific Events
Hi everyone, I am having trouble to create a solution that allows me to identify the top three contributing factors to a machine stop. The only events I would like to consider are events that hap...
amitchandak
Super User
4 years agoJulius410 , Use the second measure with event in the table visual
M1= calculate(countrows(table), filter(Table, Table[Date Time] >= now() -time(6,0,0) && Table[Machine] = "Machine2"))
Top 2 =calculate([M1], TOPN(2,allselected(Table[Event]),[M1],DESC), values(Table[Event]))