List Comprehension in an Open Office Spreadsheet - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T04:36:18Zhttp://stackoverflow.com/feeds/question/181579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181579/list-comprehension-in-an-open-office-spreadsheet2List Comprehension in an Open Office Spreadsheetjcchurch2008-10-08T06:44:53Z2008-10-09T13:04:34Z
<p>List Comprehension is a very useful code mechanism that is found in several languages, such as Haskell, Python, and Ruby (just to name a few off the top of my head). I'm familiar with the construct.</p>
<p>I find myself working on an Open Office Spreadsheet and I need to do something fairly common: I want to count all of the values in a range of cells that fall between a high and low bounds. I instantly thought that list comprehension would do the trick, but I can't find anything analogous in Open Office. There is a function called "COUNTIF", and it something similar, but not quite what I need.</p>
<p>Is there a construct in Open Office that could be used for list comprehension?</p>
http://stackoverflow.com/questions/181579/list-comprehension-in-an-open-office-spreadsheet/187158#1871581Answer by sdkpoly for List Comprehension in an Open Office Spreadsheetsdkpoly2008-10-09T13:04:34Z2008-10-09T13:04:34Z<p>CountIf can count values equal to one chosen. Unfortunately it seems that there is no good candidate for such function. Alternatively you can use additional column with If to display 1 or 0 if the value fits in range or not accordingly:</p>
<pre><code>=If(AND({list_cell}>=MinVal; {list_cell}<=MaxVal); 1; 0)
</code></pre>
<p>Then only thing left is to sum up this additional column.</p>