Link to home
Start Free TrialLog in
Avatar of Doug Van
Doug VanFlag for Canada

asked on

Calculating average value in a column (but filter out text in some cells)?

Greetings all,

I am trying to process data created by Google Forms. It automatically created a column of data. The cells contain data from 1 to 8, but also text accompanies the selections "1 (low)",  and "8 (high)". This creates a problem calculating the average value for this column, so I need to find a way to ignore the text in those cells.

The simplest way:
Create a new column by taking the left more character with =Left(cell, 1) and then calculate on the new generated column.

A more elegant way?
Is there a way that I can calculate the average without needing to create a new column?

Something like this? =AVERAGE(Left(G2,1):Left(G90,1)) - of course, that doesn't work. But what do I know? LOL

Additionally, if that is just too basic, I would love some tips on how to do magic/data analysis on Google Forms generated data. Google's results are really simplistic.

Thank you. :)
ASKER CERTIFIED SOLUTION
Avatar of Norie
Norie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Doug Van

ASKER

Thank you, that is brilliant! :)