Forum Discussion
RvdHeijden
7 years agoPost Prodigy
Simple formula i thought
Goodday, I need some help with this formula Klacht per woning = DIVIDE(FILTER(Adressen;[civiel gesloten]<>BLANK());COUNT(Klachten[ploeg])) This formula should be farely straight forward...
- 7 years ago
Right, it is because FILTER returns a table and you need a scalar for all the parameters of DIVIDE. Perhaps try:
Klacht per woning = DIVIDE(COUNTROWS(FILTER(Adressen;[civiel gesloten]<>BLANK()));COUNT(Klachten[ploeg]))
Greg_Deckler
7 years agoCommunity Champion
Right, it is because FILTER returns a table and you need a scalar for all the parameters of DIVIDE. Perhaps try:
Klacht per woning = DIVIDE(COUNTROWS(FILTER(Adressen;[civiel gesloten]<>BLANK()));COUNT(Klachten[ploeg]))