Is there a formula that will count how many times "@" is used in a cell?

Rodney Hatfield

I have a spreadsheet with a column of cells that each cell contains multiple emails. I want to create a formula that will give me a total of all emails in each cell.

Cell A1 Contains ("[email protected],[email protected],[email protected]")

I'd like help in figuring out how to count the number of emails in A1 which would be "3". Can this be done by counting the @ sign?

I have a very large spreadsheet with thousands of emails that I need to total.

I have tried CountA, Count, Search but can't figure this out.

Thanks in advance for any help

Tim Biegeleisen

You could try:

=LEN(A2) - LEN(SUBSTITUTE(A2, "@", ""))

This compares the length of the original cell to the length with all @ synbols removed, to infer the number of @ symbols.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Excel Formula to Count How many Forward Slashes (/) in Cell Value

From Dev

How to count how many times a global variable was used (read and write)?

From Dev

PHP Count how many times code is used on a page

From Dev

Writing a formula to count how many times each date appears in a set of date ranges

From Dev

Is there a excel formula to count how many times an ID appears in a column when the value in another column is YES?

From Dev

Excel Formula To Count The Number Of Times a Text Appeared in a Cell

From Dev

How to count how many times a number is repeated in a list( and if a number is not used based on values from another list )?

From Dev

How to use REGEX to read through a .txt file and count how many times words are used and add that info to a dictionary

From Dev

Google Sheets remove duplicates from a comma separated cell and count how many times that value is seen for each person?

From Dev

I can't count how many times same chars used in file

From Dev

how many times a string is present in a cell array

From Dev

Track how many times a cell changes

From Dev

How to count how many times a string occurs

From Dev

how to count how many times a loop was executed?

From Dev

how to count how many times a user logs in?

From Java

How many times the word is used on the html page

From Dev

Count How Many Times a Value Appears Php

From PHP

Count how many times something was echoed in a range?

From Dev

Count how many times the button is clicked in angularjs

From Dev

SQL COUNT how many times a value appears

From Dev

Count how many times a value appears in this array?

From Dev

Count how many times a word exist in column

From Dev

count and display how many times data in SQL

From Dev

Count how many times a character changes in a string

From Dev

Count how many times the data appear in a table

From Dev

Count How Many Times Customer Has Purchases

From Dev

Count how many number of times a value appears

From Dev

Formula to find out how many times accounts transacted on the same day

From Dev

Access: count how many time an item is used

Related Related

  1. 1

    Excel Formula to Count How many Forward Slashes (/) in Cell Value

  2. 2

    How to count how many times a global variable was used (read and write)?

  3. 3

    PHP Count how many times code is used on a page

  4. 4

    Writing a formula to count how many times each date appears in a set of date ranges

  5. 5

    Is there a excel formula to count how many times an ID appears in a column when the value in another column is YES?

  6. 6

    Excel Formula To Count The Number Of Times a Text Appeared in a Cell

  7. 7

    How to count how many times a number is repeated in a list( and if a number is not used based on values from another list )?

  8. 8

    How to use REGEX to read through a .txt file and count how many times words are used and add that info to a dictionary

  9. 9

    Google Sheets remove duplicates from a comma separated cell and count how many times that value is seen for each person?

  10. 10

    I can't count how many times same chars used in file

  11. 11

    how many times a string is present in a cell array

  12. 12

    Track how many times a cell changes

  13. 13

    How to count how many times a string occurs

  14. 14

    how to count how many times a loop was executed?

  15. 15

    how to count how many times a user logs in?

  16. 16

    How many times the word is used on the html page

  17. 17

    Count How Many Times a Value Appears Php

  18. 18

    Count how many times something was echoed in a range?

  19. 19

    Count how many times the button is clicked in angularjs

  20. 20

    SQL COUNT how many times a value appears

  21. 21

    Count how many times a value appears in this array?

  22. 22

    Count how many times a word exist in column

  23. 23

    count and display how many times data in SQL

  24. 24

    Count how many times a character changes in a string

  25. 25

    Count how many times the data appear in a table

  26. 26

    Count How Many Times Customer Has Purchases

  27. 27

    Count how many number of times a value appears

  28. 28

    Formula to find out how many times accounts transacted on the same day

  29. 29

    Access: count how many time an item is used

HotTag

Archive