• Formula To Average Letters

    Formula Purpose:
    • This function takes a series of letters and returns the average of them, i.e., the average of A, B, C is B.
    Examples of where this function shines:
    • The only application that I can see for this formula is for averaging grades. If you know another, please click here and send me an email to let me know!
    Formula Weakness(es):
    • It only works on a single contiguous range on a worksheet, not multiple ranges.
    • Must remember to enter as an array formula.
    • Only operates on the first character in each cell.
    Versions Tested:
    This formula has been tested with Excel 2003, but will work with Excel 97 or higher.

    The Formula (array entered):
    {=CHAR(ROUND(AVERAGE(IF(ISTEXT(A1:B1),CODE(UPPER(A1:B1)),"")),0))}
    • In order to use this formula, copy it to your worksheet, without the curly braces, change the two references to the range (A1:B1) to your range, and confirm the formula with CTRL+SHFT+Enter to array-enter it.
    How it works (from the inside out):
    • The IF function contains three parts:
    • The ISTEXT function ensures that only text characters are passed to the function. If the item is blank or numeric, it is ignored (replaced with a "").
    • The CODE function converts the submitted text character into its ANSI equivalent number.
    • The UPPER function is used to convert all submitted characters to upper case. Since upper- and lower-case characters are, in fact, different ("a" and "A" have different ANSI values), they cannot be compared to each other properly unless they are all of a consistent case.
    • The AVERAGE function computes the average of the results passed to it by the aforementioned IF function.
    • The ROUND function rounds the result of the AVERAGE function to no decimal places.
    • The CHAR function converts the rounded number into a letter.
    See For Yourself!
    • Try changing the letters in the Office WebApp below. You'll see that the formulas update to show you the new averages.
  • MVP Logo
  •  Donations

    If you like our website and would like to give something in return, you can make a donation. All donations are gratefully received and go to support the site.


    Select your preferred currency and donation amount, then click the donate button.

  • Recent Forum Posts

    Colo

    How to Rename a File from English to Other Language?

    Yeah, some massive HTML conversion is my line. In other words, most of difficult things can be done with Excel alone like this time. Well done, Excel!...

    Colo Today, 07:36 AM Go to last post
    Ken Puls

    Link a series name to a cell using Excel 2010 VBA

    Hi there,

    I recorded linking the title to a cell and it came back with the following. Does this help?

    Code:
        ActiveChart.SetElement
    ...

    Ken Puls Today, 04:06 AM Go to last post
    Ken Puls

    How to Rename a File from English to Other Language?

    Colo, that was way too easy... I was expecting some massive HTML conversion, or a huge engine to compare each character against a library of Chr codes!...

    Ken Puls Today, 04:02 AM Go to last post
    Ken Puls

    Shared file\macro & IP address

    Oh, and as for the max number of users who can access the file in the shared folder at once...

    • For reading, I believe it's unlimited. (The second and
    ...

    Ken Puls Today, 03:59 AM Go to last post
    Ken Puls

    Shared file\macro & IP address

    ibrahimaa,

    There is no one-line way to get your IP address the way you are getting the username. So you're going to need more code than...

    Ken Puls Today, 03:56 AM Go to last post