Forum Discussion
bhmiller89
9 years agoHelper V
Help with COUNT
I'm trying to determine how many opportunities had a "same day turnaround." I have a calculated column called "Days in queue" which is a datediff. Then I wrote a measure: #SameDayTurn = CAL...
Sean
9 years agoCommunity Champion
I don't see a problem with the formula...
#SameDayTurn =
CALCULATE (
COUNTA ( 'dpmgr vwJMWebSalesEngQueue'[OpportunityID] ),
'dpmgr vwJMWebSalesEngQueue'[DaysInQueue] = 0
)How and what did you filter?