Forum Discussion
MarcelLaib
Aug 08, 2022Copper Contributor
Count all numbers with the decimal place 0.005
Hello, i need to count all numbers with the number 5 from a list. How does it work?
- Aug 08, 2022This formula counts the cells containing the number 5:
=COUNTIF(A1:A100,5)
OliverScheurich
Aug 08, 2022Gold Contributor
=COUNT(SEARCH("*5*",C5:C22))You can try this formula if you want to count the cells that contain 5. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
=SUMPRODUCT(N(ROUND(C5:C22/0.005,0)=(C5:C22/0.005)))You can try this formula if you want to count the cells that are a multiple of 0,005.
- MarcelLaibAug 08, 2022Copper ContributorIt doesn't work with office365