Jul 10 2023 01:01 PM
Formula to determine number of times a character exists in a cell: I want to find the number of times "_" exists in cell = abc_def_ghi_xyz
Jul 10 2023 01:09 PM
SolutionLet's say the cell is A1. The number of "_" in the cell value is:
=LEN(A1)-LEN(SUBSTITUTE(A1,"_",""))
Jul 10 2023 01:26 PM
Jul 10 2023 01:09 PM
SolutionLet's say the cell is A1. The number of "_" in the cell value is:
=LEN(A1)-LEN(SUBSTITUTE(A1,"_",""))