Forum Discussion
luisadavidson
6 years agoFrequent Visitor
Calculating Attendance at Events
Hi there, Hope you can help as I'm fairly new to DAX. I have a column in my data called 'booking status' with either 'Attended', 'Absent', or 'Booked'. I have a matrix table that shows this, ...
- Anonymous6 years ago
Hi luisadavidson ,
You can create a measure.
var AttendedEvent = SUM('Table'[Attended])
var BookedEvent = SUM('Table'[Booked])Return
DIVIDE(BookedEvent,AttendedEvent)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Anonymous
6 years agoNot applicable
Hi luisadavidson ,
You can create a measure.
var AttendedEvent = SUM('Table'[Attended])
var BookedEvent = SUM('Table'[Booked])
Return
DIVIDE(BookedEvent,AttendedEvent)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)