Special Average Needed

Karel12

New Member
Joined
Nov 14, 2011
Messages
11
Hi everyone,

Would someone be able to help me in finding a solution to a problem.

I have rows of data, which attainment grades are entered in alternate cells across the row, These are entered as text; Ex, G, S, C. I want to create an average cell for each row/student, that will calculate the average of these, showing the most commonly occuring attainment grade. I dont mind if its the mode or mean.

Is this possible?

Many Thanks in Advance

K
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
I have thought about using A IF statement containing CountIF formulae,

so if I say that the number of Ex's is > than the number of C's or S's or G's, then display Ex in the average cell.

I have tried to write this formula but am stuck after the first hurdle, please could someone help.

Regards
K
 
Upvote 0
This is very different to what I planned, I need just one cell to display the most commonly entered attainment grade in it.

I need to reference the specific letters in the row, Ex, G, C, S, as they are entered between alternate columns within which are numbers for effort grades
So it could read

|Ex|1|G|1|C|4| etc...

across the sheet

It needs to pick out the specific entered text.

I was thinking along the lines of
=IF((COUNTIF(L3:HB3,"Ex"))>(COUNTIF(L3:HB3,"G")),(Ex),(G))
but i want to extend this to include the other two conditions and display the most common.

Regards
K
 
Upvote 0
this is the best I can do I am afraid, I started with If but dont know what to do in case of a tie any ideas?

Excel Workbook
LMNOPQRSTUVWXYZ
2EXCSG
3EXCSGCCCHEXGG2413
Sheet2
 
Upvote 0
Perhaps something like this....
Both formulas return the most occurring text value in the referenced range.

REGULAR FORMULA (completed by just pressing ENTER after editing)
=INDEX(L3:HB3,MODE(ISNUMBER(1/(L3:HB3&1))*COLUMN(L3:HB3)*1000+MATCH(L3:HB3&"",L3:HB3&"",0)))

ARRAY FORMULA (completed by pressing CTRL+SHIFT+ENTER, instead of just ENTER)
=INDEX(L3:HB3,MODE(IF(ISERROR(1/(L3:HB3&1)),MATCH(L3:HB3,L3:HB3,0))))

Is that something you can work with?
 
Upvote 0
Would it be possible to reproduce this formula to find the average of these for the column of averages that has been previously created?
Thereby finding the class average of the average marks.

Not sure what to change in the formula that was given.

Regards
K
 
Upvote 0
I'm not sure I understand what you mean...Can you post some sample data and the results you want to see, based on that data?
 
Upvote 0

Forum statistics

Threads
1,215,963
Messages
6,127,960
Members
449,412
Latest member
montand

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top