Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts
This formula works fine:
avg( ([Entry Date (CPUDT)] - [Posting date]))
This formula not:
avg( ([Entry Date (CPUDT)] - [Posting date])-={'0'})
Any ideas how to solve this issue?
Thank you, Tom
maybe like
Avg(If([Entry Date (CPUDT)]<>[Posting date],[Entry Date (CPUDT)] - [Posting date]))
or using some key field and set expression instead of the If() function:
Avg({$<Key={"=[Entry Date (CPUDT)]<>[Posting date]"}>} [Entry Date (CPUDT)] - [Posting date])
maybe like
Avg(If([Entry Date (CPUDT)]<>[Posting date],[Entry Date (CPUDT)] - [Posting date]))
or using some key field and set expression instead of the If() function:
Avg({$<Key={"=[Entry Date (CPUDT)]<>[Posting date]"}>} [Entry Date (CPUDT)] - [Posting date])