vba - If, Then, Duplicate Excel Formula -
Column "A" is a number column for each line, some numbers are identical, i.e. .. < P> A1 is 1a2 is 3a3 is 1 a4 is 3
I need a formula that will show how many cells with the content in the column without computing the duplicates, as above 2 Will happen. Is there a "if-then" formula but is unable to get it directly any help there? Thank you in advance!
If you are using Excel 2013, then I want to say that a count is specific Regardless of this, you can do it like this:
= SUM (IF (Frequency (A1: A4, A1: A4)> 0,1) < / Code> Edit: Adding an explanation >> >> by using values within AW: A4 >> (second parameter) If checks to see if anything returns, i.e. frequency If it is more than 0, then in that case it gives 1 for each unique value, which it finds. Then by adding the number of 1s back to the SUM , if statement, in return you give the number of unique values within the array A1: A4 .
Comments
Post a Comment