<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.openoffice.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Elish</id>
	<title>Apache OpenOffice Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.openoffice.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Elish"/>
	<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/wiki/Special:Contributions/Elish"/>
	<updated>2026-05-06T03:51:45Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234664</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234664"/>
		<updated>2014-04-14T12:29:29Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 17881&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc, Writer}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;br /&gt;
&lt;br /&gt;
== Per-session statistics ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=16121 bug 16121]&lt;br /&gt;
&lt;br /&gt;
== PDF Merging ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=75470 bug 75470]&lt;br /&gt;
&lt;br /&gt;
== Report builder ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108115 bug 108115]&lt;br /&gt;
&lt;br /&gt;
== transliteration ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=17881 bug 17881]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234629</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234629"/>
		<updated>2014-04-02T19:18:54Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 108115&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc, Writer}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;br /&gt;
&lt;br /&gt;
== Per-session statistics ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=16121 bug 16121]&lt;br /&gt;
&lt;br /&gt;
== PDF Merging ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=75470 bug 75470]&lt;br /&gt;
&lt;br /&gt;
== Report builder ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108115 bug 108115]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234590</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234590"/>
		<updated>2014-03-25T13:18:51Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 75470&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc, Writer}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;br /&gt;
&lt;br /&gt;
== Per-session statistics ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=16121 bug 16121]&lt;br /&gt;
&lt;br /&gt;
== PDF Merging ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=75470 bug 75470]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234573</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234573"/>
		<updated>2014-03-24T13:28:25Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 16121&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc, Writer}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;br /&gt;
&lt;br /&gt;
== Per-session statistics ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=16121 bug 16121]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234569</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234569"/>
		<updated>2014-03-20T18:52:27Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc, Writer}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234568</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=234568"/>
		<updated>2014-03-20T18:51:35Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Writer Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Revision history as auto generated index ==&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=49963 bug 49963]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232852</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232852"/>
		<updated>2014-01-16T12:53:41Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 91425&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;br /&gt;
&lt;br /&gt;
== Copy/Paste CSV file ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=91425 bug 91425]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232799</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232799"/>
		<updated>2014-01-14T13:28:00Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 102704&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;br /&gt;
&lt;br /&gt;
== Export as MediaWiki ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=102704 bug 102704]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232792</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232792"/>
		<updated>2014-01-13T17:20:28Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 109178&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;br /&gt;
&lt;br /&gt;
== Formula comparison ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=109178 bug 109178]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232701</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232701"/>
		<updated>2014-01-10T12:17:03Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 108441&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;br /&gt;
&lt;br /&gt;
== Functions to return first or last non null value ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108441 bug 108441]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232681</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232681"/>
		<updated>2014-01-07T18:58:41Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 122608&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;br /&gt;
&lt;br /&gt;
== Quandl ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122608 bug 122608]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232497</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232497"/>
		<updated>2013-12-27T09:23:15Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 123916&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;br /&gt;
&lt;br /&gt;
== CellMaster ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=123916 bug 123916]&lt;br /&gt;
&lt;br /&gt;
http://www.cellmaster.com.au/Demo.html&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232483</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232483"/>
		<updated>2013-12-25T18:26:32Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 81726&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;br /&gt;
&lt;br /&gt;
== RLPlot ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=81726 bug 81726]&lt;br /&gt;
&lt;br /&gt;
http://rlplot.sourceforge.net/index.html&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232482</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232482"/>
		<updated>2013-12-25T13:54:14Z</updated>

		<summary type="html">&lt;p&gt;Elish: /* Increased date range */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increase date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232481</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232481"/>
		<updated>2013-12-25T13:53:40Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 92996&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;br /&gt;
&lt;br /&gt;
== Increased date range ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=92996 bug 92996]&lt;br /&gt;
&lt;br /&gt;
Increae date handling range to year 1000 with option for users to enter date atwhich calendars changed between Julian and Gregorian and by how much (e.g. UK1752 by 30 days)&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232472</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232472"/>
		<updated>2013-12-20T12:51:43Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 108640&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Series function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=108640 bug 108640]&lt;br /&gt;
A function to create and print brief series in calc!&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232467</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232467"/>
		<updated>2013-12-19T12:32:26Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 112459&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Image metadata function ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=112459 bug 112459] &lt;br /&gt;
See Bugzilla description.&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232427</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232427"/>
		<updated>2013-12-13T11:22:25Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 89980&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== Statistical summary tool == &lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=89980 bug 89980]&lt;br /&gt;
See Bugzilla description.&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232426</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232426"/>
		<updated>2013-12-13T11:11:51Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 95135&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;br /&gt;
&lt;br /&gt;
== Linear interpolation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=95135 bug 95135]&lt;br /&gt;
See Bugzilla description.&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232412</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232412"/>
		<updated>2013-12-10T18:14:47Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 122837&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;br /&gt;
&lt;br /&gt;
== ASAP Utilities ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122837 bug 122837]&lt;br /&gt;
&lt;br /&gt;
http://www.asap-utilities.com/about-asap-utilities.php&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232386</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232386"/>
		<updated>2013-11-26T15:06:25Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug number&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612 bug 105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232385</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232385"/>
		<updated>2013-11-26T15:05:27Z</updated>

		<summary type="html">&lt;p&gt;Elish: replace description with reference&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=105612]&lt;br /&gt;
&lt;br /&gt;
See Bugzilla description.&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232384</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=232384"/>
		<updated>2013-11-26T15:00:23Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 105612&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
&lt;br /&gt;
== Provide a RICHTEXT() function for dynamic text formatting of formula output in cells==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Formerly bug 105612&lt;br /&gt;
&lt;br /&gt;
Provide a function called &amp;#039;RICHTEXT()&amp;#039; for use in cell formulas in OOo Calc ,that will take one string argument possibly containing html-like tags, andreturn the plain text stripped of all the tags  --  and, when used as atop-level function in a cell formula, will cause the returned text to beformatted inside the cell according to those HTML-like tags. For example, a cellwith the following cell formula would then show the text &amp;quot;Title (subtitle)&amp;quot; withnice bold/italic formatting:		=RICHTEXT(&amp;quot;&amp;lt;b&amp;gt;Title&amp;lt;/b&amp;gt; (&amp;lt;i&amp;gt;subtitle&amp;lt;/i&amp;gt;)&amp;quot;)The internal value of the cell, for example when referenced by another formula,would however just be the plain string &amp;quot;Title (subtitle)&amp;quot;.At a minimum, the tags &amp;lt;b&amp;gt;, &amp;lt;i&amp;gt;, &amp;lt;u&amp;gt;, &amp;lt;color&amp;gt; and &amp;lt;size&amp;gt; (or however you wish toname them) should be supported.This would allow for much much greater flexibility and convenience for designingvisually pleasing dynamic spreadsheets, compared to the rather limited andreally cumbersome to use &amp;#039;STYLE()&amp;#039; function and &amp;#039;conditional formatting&amp;#039; feature.(Note: Maybe it would then make sense to also introduce a &amp;#039;MASK()&amp;#039; function,that will augment a given string in such a way that &amp;#039;RICHTEXT()&amp;#039; won&amp;#039;t interpretany part of it as formatting tags -- for example, by making the replacements	&amp;quot;&amp;amp;&amp;quot;  --&amp;gt;  &amp;quot;&amp;amp;amp;&amp;quot;	&amp;quot;&amp;lt;&amp;quot;  --&amp;gt;  &amp;quot;&amp;amp;lt;&amp;quot;	&amp;quot;&amp;gt;&amp;quot;  --&amp;gt;  &amp;quot;&amp;amp;gt;&amp;quot;which &amp;#039;RICHTEXT()&amp;#039; would then convert back to the original characters in it&amp;#039;splain text output. This would then allow to safely write, for example:		=RICHTEXT(&amp;quot;&amp;lt;b&amp;gt;For bold text use the tag:&amp;lt;/b&amp;gt; &amp;quot; &amp;amp; MASK(&amp;quot;&amp;lt;b&amp;gt;&amp;quot;)which would display the string &amp;quot;For bold text use the tag: &amp;lt;b&amp;gt;&amp;quot; inside the cell,with partially bold formatting of course.)[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=231643</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=231643"/>
		<updated>2013-10-06T07:24:39Z</updated>

		<summary type="html">&lt;p&gt;Elish: add bug 117659&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
== Create a function to find out the background color of a cell  ==&lt;br /&gt;
&lt;br /&gt;
I would like there to be a function that returns the background color of a cell.  If the color is best described as an RGB set (0-255, or whatever), then there can be three arguments (location &amp;amp; RGB color).ie: bgcolor(row,column,RGBcolor) -returns the component (0-255) of the cell(row,column)so =color(25,16,RED) would return the RED component of cell(25,16).  If the argument RED isn&amp;#039;t a defined constant, simply establish a standard code (RED=1, GREEN=2, BLUE=3)Thanks,Will&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=222962</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=222962"/>
		<updated>2013-05-24T14:31:03Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
== Thunderbird contacts  ==&lt;br /&gt;
&lt;br /&gt;
Extension to make a list of contacts in Thunderbird.&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220796</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220796"/>
		<updated>2013-05-14T15:31:46Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220795</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220795"/>
		<updated>2013-05-14T15:30:11Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== Function to return RAL color  ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* ral(2004) will color selection in &amp;quot;pure orange&amp;quot;&lt;br /&gt;
see link: https://www.ral-farben.de/uebersicht-ral-classic-farben.html?&amp;amp;L=1&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220708</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220708"/>
		<updated>2013-05-13T19:32:31Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0, d/dx(f(x))&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
== secant solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0 (unlike Newton Raphson, function derivative not given)&lt;br /&gt;
* secant(x_i-1,x_i,f(x),eps)=x_i-(f(x_i)*(x_i-1-x_i))/(f(x_i-1)-f(x_i))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220495</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220495"/>
		<updated>2013-05-13T12:21:09Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x)),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220494</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220494"/>
		<updated>2013-05-13T12:17:50Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
== Newton Raphson solver ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
given f(x)=0&lt;br /&gt;
* newraph(x,f(x),d/dx(f(x),eps)=x-f(x)/(d/dx(f(x))&lt;br /&gt;
eps=convergence criteria&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220195</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220195"/>
		<updated>2013-05-12T15:22:53Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
== Resistor color code calculator ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* rescol(brown,red,orange)=12000 (ohm)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220093</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220093"/>
		<updated>2013-05-12T09:28:43Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
== Function to return chemical compound formula ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* chemform(water)=H2O&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220092</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220092"/>
		<updated>2013-05-12T09:02:47Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic equation ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* error if complex root&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220091</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220091"/>
		<updated>2013-05-12T09:01:11Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Ideas for Apache OpenOffice Calc}}&lt;br /&gt;
&lt;br /&gt;
= Calc Add-ins =&lt;br /&gt;
&lt;br /&gt;
== Function to return roots of quadratic equation ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122171 bug 122171]&lt;br /&gt;
&lt;br /&gt;
Quadratic function ax^2+bx+c=0&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* quadratic(a,b,c,1) will return (-b+sqrt(b^2-4ac))/(2a)&lt;br /&gt;
* quadratic(a,b,c,2) will return (-b-sqrt(b^2-4ac))/(2a)&lt;br /&gt;
&lt;br /&gt;
== Numerical integration - Simpson&amp;#039;s rules ==&lt;br /&gt;
&lt;br /&gt;
Formerly [https://issues.apache.org/ooo/show_bug.cgi?id=122202 bug 122202]&lt;br /&gt;
&lt;br /&gt;
Given: equally spaced x values, x0 till xn and respective function values in two columns&lt;br /&gt;
&lt;br /&gt;
* Three points n=2: Simpson&amp;#039;s 1/3 ruleFunction &lt;br /&gt;
  Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6&lt;br /&gt;
&lt;br /&gt;
* Four points n=3: Simpson&amp;#039;s 3/8 ruleFunction &lt;br /&gt;
  Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8&lt;br /&gt;
&lt;br /&gt;
* Five points n=4: Simpson&amp;#039;s 1/3 rule on first and last three points&lt;br /&gt;
&lt;br /&gt;
* Six points n=5: Simpson&amp;#039;s 1/3 rule on first three points and Simpson&amp;#039;s 3/8 rule on last last four points&lt;br /&gt;
&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Function to return astrological sign ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* astrosign(19/07/2013)=Cancer&lt;br /&gt;
&lt;br /&gt;
== Function to return calling code ==&lt;br /&gt;
&lt;br /&gt;
Proposed added function:&lt;br /&gt;
&lt;br /&gt;
* callcode(Colombia)=57&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220001</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220001"/>
		<updated>2013-05-11T18:50:10Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Function to return roots of quadratic equation (formerly bug 122171)&amp;lt;br /&amp;gt;&lt;br /&gt;
Numerical integration - Simpson&amp;#039;s rules (formerly bug 122202)&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220000</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=220000"/>
		<updated>2013-05-11T18:49:21Z</updated>

		<summary type="html">&lt;p&gt;Elish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Function to return roots of quadratic equation (formerly bug 122171)&lt;br /&gt;
Numerical integration - Simpson&amp;#039;s rules (formerly bug 122202)&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=219999</id>
		<title>Extensions/Ideas/Calc</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Extensions/Ideas/Calc&amp;diff=219999"/>
		<updated>2013-05-11T18:45:44Z</updated>

		<summary type="html">&lt;p&gt;Elish: Created page with &amp;quot;Function to return roots of quadratic equation (formerly bug 122171)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Function to return roots of quadratic equation (formerly bug 122171)&lt;/div&gt;</summary>
		<author><name>Elish</name></author>
	</entry>
</feed>