I realize that tumblr may not be the most effective place to ask for help with this, but I need some help with Google Spreadsheets.
I’m trying to create a formula in cell B5 that does the following:
Add integers 1-20 (inclusive) to value in cell B2, and compare each result to the value in cell M1. Return the number of values in that range that are greater than or equal to the value in M1.
M1 is conditional, based on the user input in cell K1. Cell B2 is the sum of cells K3+K4+a user input constant, so I can’t just compare to static values (which would probably simplify things a lot!)
I think that I should be using SUMIF() or COUNT() for at least part of this, but I can’t quite snap the pieces together in a way that makes sense.
If you’ve got any advice or can at least give me a signal boost, that’d be great! Thanks.
- -Endreal
Someone passed this on to me and I figured I'd waste some time doing this. I made a simplified version of the problem. I used fake values for M1 (which is C2 in mine) and B2, but you should just be able to plug whatever values you want into it. The formula is in E2.
I don't use spreadsheets a lot to do things that would be easier in even the most lightweight of scripting languages. The basic idea is that the ARRAYFORMULA function allows you to iterate over a range and return the results of it as an array. If you just jam that into a COUNTIF you can make a conditional counter that iterates over the array.
Let me know if this helps at all, endreal.