Forum Discussion
Aimeeclaird
6 years agoHelper IV
Count Calls (Inbound and Outbound) Yesterday
Hi, hopefully someone can help! I want to include a visual in my report that shows the percetage of inbound vs outbound calls yesterday (thinking a pie or doughnut chart?) I am struggling how...
- 6 years ago
Hi Aimeeclaird
try more easy
Inbound Calls Yday = calculate( counta(Inbound_Calls[StartDate]), Inbound_Calls[StartDate] = (TODAY()-1) )or
Inbound Calls Yday = calculate( counta(Inbound_Calls[StartDate]), Inbound_Calls[StartDate].[Date] = (TODAY()-1) )
az38
6 years agoCommunity Champion
Hi Aimeeclaird
try more easy
Inbound Calls Yday = calculate(
counta(Inbound_Calls[StartDate]),
Inbound_Calls[StartDate] = (TODAY()-1)
)
or
Inbound Calls Yday = calculate(
counta(Inbound_Calls[StartDate]),
Inbound_Calls[StartDate].[Date] = (TODAY()-1)
)Aimeeclaird
6 years agoHelper IV
Thanks for your help - appreciate you taking the time. Can I ask where I was going wrong please?