Forum Discussion
arif_tsrm
Helper I
2 years agoMonthly line chart calculation
I have two fact table( FactDeskCapacity, FactStaffAttendance) connected with Dim Calender Table using key MonthName, Have two measure "Desk Capacity" is count of Desk from FactDeskCapacity, and "Tot...
Uzi2019
Community Champion
2 years agoHi arif_tsrm
please create the follwoing measure
Count day= CALCULATE( COUNT(date), FILTER('Table',[measure1]>[measure2]))
If I answered your question please give kudos and accept it as a solution!
- arif_tsrm2 years ago
Helper I
Thank you for you reply, I have using your above measure but not working , please see my below measure
test = var tst=CALCULATE(COUNT(FactStaffAttendance[DateOnly]),FILTER(FactStaffAttendance, [Total Staff Attendance]>[Desk Capacity]))return tst