Forum Discussion
Interviews Calculation
- 6 years ago
If I'm looking at your data correctly, should your interview scheduled column just be:
Interview Scheduled = IF( 'Table'[Type of Submission] = "Interview Scheduled" , 1 , 0 )
Then your measure would just be:
Total Interviews Scheduled = SUM( 'Table'[Interview Scheduled] )
Or simplify and just have a measure like this:
Total Interviews Scheduled = CALCULATE( COUNTROWS() , 'Table'[Type of Submission] = "Interview Scheduled" )
??
If I'm looking at your data correctly, should your interview scheduled column just be:
Interview Scheduled = IF( 'Table'[Type of Submission] = "Interview Scheduled" , 1 , 0 )
Then your measure would just be:
Total Interviews Scheduled = SUM( 'Table'[Interview Scheduled] )
Or simplify and just have a measure like this:
Total Interviews Scheduled = CALCULATE( COUNTROWS() , 'Table'[Type of Submission] = "Interview Scheduled" )
??
CoreyP ,
I took a deeper look into the relationship view to see if there was an issue and I was able to find where the kink was, but I appreciate the simplified formula that I'll definitely keep in my back pocket for the future as I did plug it in to my model to see what would transpire.
Have a great Wednesday!