I'm trying to do a vlookup that looks at different letter ratings (AAA,+AA,AA,AA-,A+,A,A-,etc.) and give that letter rating a numeric value from 0 to 100 that is in an array in another worksheet. But for some reason, my vlookup doesnt seem to recognize the letter rating either in the main worksheet or in the reference table with the numeric scale in it. I'm not sure whats wrong. Please help!
I've attached my 2 worksheets in the following example:
https://expirebox.com/download/eacc6...95dbbe1a1.html
Thanks for the help!
Gabriel
P.S. The Vlookup is in column U of the spreadsheet
I wasn't able to open the link you provided.
TheSilkCode
Related
I have been using Sum product formula to count the number of dates between 2 given dates but when i want to count the whole data ignoring the last match from formula then it give 0 answer whereas it should give the answer for whole data any help will be appreciated.
I have attached a sheet link below for better understanding.
=SUMPRODUCT(--(B2:B>=E1),--(B2:B<=F1),--(A2:A=E2))
https://docs.google.com/spreadsheets/d/1Xm2aGcWam7j9vFdSNfalbko4rt-RlUOb7bLuL9009bw/edit?usp=sharing
Try:
=SUMPRODUCT(--(B2:B>=E1),--(B2:B<=F1),(A2:A=E6)+(E6=""))
In MS Excel, try something like:
=SUMPRODUCT(--(B2:B1000>=E1),--(B2:B1000<=F1),(A2:A1000=E6)+(E6=""))
I am working on a spreadsheet at work and came up with a somewhat annoying problem. I have a reference number that has two values with it. E.g. Ref number: 12345 with $450 and $100.
I am trying to do an index match with sum to add them up, but it will only return the $450 value.
This is the formula I am using:
=SUM(INDEX(Sheet2!$A$2:$N$9872,MATCH($A148,Sheet2!$A$2:$A$9872,0),6))
Basically, I have the reference numbers in Sheet 1, in addition to the Reference number with their corresponding values in sheet 2.
Hopefully this makes sense, and thank you in advance for your help.
You want SUMIFS:
=SUMIFS(Sheet2!$F:$F,Sheet2!$A:$A,$A148)
Good afternoon,
I am trying to use a VLOOKUP formula across different sheets, but so
far I am unsucessful.
The formula I am using is the one below:
VLOOKUP(R9;INDIRECT("'"&INDEX(ListaFolhas;MATCH(1;--(COUNTIF(INDIRECT("'"&ListaFolhas&"'!$C$4:$D$4");R9)>0);0))&"'!$C$4:$D$4");2;FALSE)
ListaFolhas is the name of the range of the names from the different
sheets.
Basically I need to insert the number associated with each person:
What can I be doing wrong? I used this formula from a page and adapted
to my own case...
EDIT:
After some research I figured out an answer. However, I am facing a new problem: The formula I found only considers one word, doesn't consider 2+ words. A screenshot of the situation:
In the image I have the formula I am using and the difference I get. Could anyone help me please? Thanks in advance!
=INDEX(range of cells with the numbers, MATCH(name you are looking for,ListaFolhas, 0))
I need to collate the total numbers for each type of document that students send to me:
Example document:
For example, for "PK" (in the second table,) I need to calculate the total number of "Journal," "Miscellaneous Review," and so on. Is there any formula that will help me do this?
Edit:
Sample doc 2
This seems to be a very easy SUMIFS problem.
Using your sheet, the code should be:
=SUMIFS($C:$C,$B:$B,N$2,$D:$D,$M3)
Just copy and paste for all the cells you need.
For future reference, you should really show any efforts you have tried previously
I'll try to do my best to explain the situation and what I'm working with.
I am working on creating a quiz within Excel 2010 and am trying to create a function that references another by assigning a point value when either Correct or Incorrect is generated by an existing formula. This is the formula I'm using right now for the quiz:
=IF(C4=Answers!B5,"Correct!","Incorrect")
I want to assign "1" to Correct and "0" to Incorrect and have that number add to a cell on a different sheet.
Any and all help is appreciated!
Using the function suggested by #Dave: If the answers are in ColumnC, your formulae in ColumnE and the correct answers in ColumnB of Sheet Answers then the Correct! results may be counted in the same sheet as the formula with:
=COUNTIF(E:E,"Correct!")