Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
Say I have a spreadsheet that contains quizzes taken by students and their scores.
I want to create another table of that data the gives me an average of 2 quizzes that are related to the same topic. I have attached an example. Not all topics contain two different quizzes, some just consist of one single quiz.
Maybe someone could help me solve this.
enter image description here
I tried to use a pivot table but it creates a column for each test, not exactly what I need.
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 days ago.
Improve this question
an example of the data set I have is shown below: enter image description here
With this I want to be able to combine rows that have the same (Date, Scope & Category) and have the Val/COArea Crcy column sum together the rows values so I then have one row displaying the Date, Scope, Category, and value.
Hopefully this makes sense... Thanks!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 13 days ago.
This post was edited and submitted for review 7 days ago.
Improve this question
Unfortunately, I couldn't find the right thread, so I'm trying here.
I'm trying to write a function with XLOOKUP that accesses the Database table. I can do that with the formula. But my problem is that I also have individual headings/titles for the individual cells of the XLOOKUP. I would like to transpose both rows with multiple columns. Unfortunately, this does not work so easily with MTRANS. Therefore, I am trying to solve the transposition with VBA (reluctantly).
I have not been able to find a reasonable solution. Example structure looks like the datatype "test.xlms":
Now, row 1&2 have to transponse. How can i do that? And how can i translate a XLOOKUP-function with 5 arguments in a VBA-script? Can anybody explain it?
enter image description here
enter image description here
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
In the example provided, I want to find mobile phone D and C. What would be the criteria for this?
To show phone D and phone C in the results, you have to specify both phones in the Advanced Filter criteria, one phone per row.
For examples on how to use complex filter criteria in Advanced Filter, see
https://www.contextures.com/xladvfilter01.html
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
For my schools sports day i need to convert the position someone comes in to a score.
I need 2 kinds a competition of 4 people and of 8 people
so:
Place -> Score
1st->8,
2nd->7,
3rd->6,
...,
8th->1
and
1st->8,
2nd->6,
3rd->4,
4th->2
Thanks in advance
Edit: The place just comes out as 1,2,3,...,8 or 1,2,3,4 not 1st,2nd ect.
As I understood, simply you can do something like this,
B1 -> =IF(A2>8,"NA",9-A2)
C1 -> =IF(A2>4,"NA",10-2*A2)
Once you enter the place in A1, you will get the score accordingly as below.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
enter image description here[vlookup]
Erradic/inconsistent behavior with vlookup function in MS Excel.
The search list is in yellow, search result is in green.
Please refer to the captured image.
Help would be much appreciated.
Nothing is wrong with vlookup.
Vlookup will look in the first column for what you want, in this case it looks in column A for “round” and returns n/a which is perfectly correct.
You could 4 vlookups to deal with this or you can try index and match ...