I'm trying to arrange a column so that I can essentially "score" results.. I am looking for a formula that will go "If greater than 100000 but less than 110000 = 10, if greater than 90000 but less than 99999 = 9, etc etc.. can someone help?
相关问题
- Excel sunburst chart: Some labels missing
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
- if/else statement for defining a distribution in J
相关文章
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- js if any value in array is under or over value
- Unregister a XLL in Excel (VBA)
- BASH: Basic if then and variable assignment
- Bash script that creates a directory structure
- Java Equivalent to iif function
- How to prevent excel from truncating numbers in a
You can do this a few ways. Vlookup or summing if statements. Assuming your column you want to score is in column A and you are scoring in column B try these:
Vlookup
(assuming a table is on column c and d)
=VLOOKUP(A1,C1:D2,2)
Ifs
=IF(A1=10000,10,0)+IF(A1=9000,9,0)
We can use LOOKUP with ranges:
I used lookup output as ranges to show what lookup is trying to do, in your case use below: