Forum Discussion
bhmiller89
Helper V
9 years agoHelp 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
Community Champion
9 years agoI don't see a problem with the formula...
#SameDayTurn =
CALCULATE (
COUNTA ( 'dpmgr vwJMWebSalesEngQueue'[OpportunityID] ),
'dpmgr vwJMWebSalesEngQueue'[DaysInQueue] = 0
)How and what did you filter?