Tags:
view all tags
---+!! TWiki Spreadsheet Plugin <!-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SpreadSheetPlugin or provide feedback at http://twiki.org/cgi-bin/view/Plugins/SpreadSheetPluginDev. If you are a TWiki contributor please update the plugin in the SVN repository. --> This plugin adds spreadsheet capabilities to TWiki topics. Functions such as ==%<nop>CALC{$INT(7/3)}%== are evaluated at page view time. They can be placed in table cells and outside of tables. In other words, this plugin provides general function evaluation capability, not just classic spreadsheet functions. The plugin currently has <!-- %SEARCH{ "^#Func" topic="%TOPIC%" type="regex" nonoise="on" multiple="on" format="$percntCALCULATE{$SETM(nFunctions, +1)}$percnt" separator=" " }% --> %CALCULATE{$GET(nFunctions)}% functions. <table><tr><td valign="top"> __Example:__ | *Region:* | *Sales:* | | Northeast | 320 | | Northwest | 580 | | South | 240 | | Europe | 610 | | Asia | 220 | | Total: | %CALC{$SUM( $ABOVE() )}% | </td><td> </td><td valign="top"> __Interactive example:__ <form name="interactive" action="%SCRIPTURL{view}%/%WEB%/%TOPIC%" method="get"> <noautolink> <table><tr> <td></td> <td>Formula:</td> </tr><tr> <td><code>%<nop>CALCULATE{</code></td> <td><input type="text" name="func" size="50" value="%URLPARAM{ "func" default="$PROPERSPACE(%WIKINAME%)" encode="entity" }%" class="twikiInputField" /><code>}%</code> <input type="submit" value="Evaluate" class="twikiSubmit" /></td> </tr><tr> <td valign="top" align="right">Result: </td> <td valign="top">%CALCULATE{%URLPARAM{ "func" default="$PROPERSPACE(%WIKINAME%)" }%}%</td> </tr></table> </noautolink> </form> </td></tr><tr><td colspan="3"> The formula next to "Total" is ==%<nop>CALC{$SUM( $ABOVE() )}%==. <br /> (you see the formula instead of the sum in case the plugin is not installed or is not enabled.) </td></tr></table> %TOC% ---++ Syntax Rules This plugin handles the ==%<nop>CALC{...}%== and ==%<nop>CALCULATE{...}%== variables. Built-in functions found between the quotes are evaluated as follows: * Built-in function are of format ==$FUNCNAME(parameter)== * Functions may be nested, such as ==%<nop>CALC{$SUM( R2:C$COLUMN(0)..R$ROW(-1):C$COLUMN(0) )}%== * Functions are evaluated from left to right, and from inside to outside if nested * The function parameter can be text; a mathematical formula; a cell address; or a range of cell addresses * Multiple parameters form a list; they are separated by a comma, followed by optional space, such as ==%<nop>CALC{$SUM( 3, 5, 7 )}%== * A table cell can be addressed as ==R1:C1==. Table address matrix: | ==R1:C1== | ==R1:C2== | ==R1:C3== | ==R1:C4== | | ==R2:C1== | ==R2:C2== | ==R2:C3== | ==R2:C4== | * A table cell range is defined by two cell addresses separated by ==".."==, e.g. "row 1 through 20, column 3" is: ==R1:C3..R20:C3== * Lists can refer to values and/or table cell ranges, such as ==%<nop>CALC{$SUM( 3, 5, $T(R1:C7), R1:C11..R1:C15 )}%== * Functions can only reference cells in the current or preceeding row of the current table; they may not reference cells below the current table row * Functions can also be placed outside of tables; they can reference cells in the preceeding table * Functions can be placed in a %SYSTEMWEB%.FormattedSearch, but the CALC needs to be escaped. Learn how to [[#CalcInFormattedSearch][use a CALC in a formatted search]] * Plain text can be added, such as ==%<nop>CALC{Total: $SUM($ABOVE()) kg}%== ---++ Use CALC or CALCULATE %ICON{table}% *Use =%<nop>CALC{...}%= _in_ table cells:* %BR% The CALC variable handles all functions, but it gets handled with delay compared to other %SYSTEMWEB%.TWikiVariables: It gets executed after internal variables and plugin variables that use the register tag handler. You may get unexpected results if you nest CALC inside other variables (such as =%<nop>INCLUDE{%<nop>CALC{...}%}%=) because it does not get evaluated inside-out & left-to-right like ordinary TWiki variables. %ICON{indexlist}% *Use =%<nop>CALCULATE{...}%= _outside_ tables:* %BR% The CALCULATE variable is handled inside-out & left-to-right like ordinary TWiki variables, but it does __not__ support functions that refer to table cells, such as =$LEFT()= or =$T()=. ---++ Built-in Spreadsheet Plugin Functions The plugin currently has %CALCULATE{$GET(nFunctions)}% functions. Convention for parameters: * Required parameters are indicated in ==( bold )== * Optional parameters are indicated in ==( _bold italic_ )== #FuncABOVE ---+++ ABOVE( ) -- address range of cells above the current cell * Syntax: ==$ABOVE( )== * Example: ==%<nop>CALC{$SUM($ABOVE())}%== returns the sum of cells above the current cell * Related: =[[#FuncLEFT][$LEFT()]]=, =[[#FuncRIGHT][$RIGHT()]]= #FuncABS ---+++ ABS( num ) -- absolute value of a number * Syntax: ==$ABS( num )== * Example: ==%<nop>CALC{$ABS(-12.5)}%== returns ==12.5== * Related: =[[#FuncSIGN][$SIGN()]]=, =[[#FuncEVEN][$EVEN()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncODD][$ODD()]]= #FuncAND ---+++ AND( list ) -- logical AND of a list * Syntax: ==$AND( list )== * Example: ==%<nop>CALC{$AND(1, 0, 1)}%== returns ==0== * Related: =[[#FuncNOT][$NOT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncOR][$OR()]]=, =[[#FuncWHILE][$WHILE()]]=, =[[#FuncXOR][$XOR()]]= #FuncAVERAGE ---+++ AVERAGE( list ) -- average of a list or a range of cells * Syntax: ==$AVERAGE( list )== * Example: ==%<nop>CALC{$AVERAGE(R2:C5..R$ROW(-1):C5)}%== returns the average of column 5, excluding the title row * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncBITXOR ---+++ BITXOR( text ) -- bit-wise XOR of text * Each bit of each character of =text= is flipped, useful to obfuscate text. Bit-XORing text twice will restore the original text. * Syntax: ==$BITXOR( text )== * Example: ==%<nop>CALC{$BITXOR(A123)}%== returns ==¾ÎÍÌ== * Example: ==%<nop>CALC{$BITXOR($BITXOR(anything))}%== returns ==anything== * Related: =[[#FuncHEXDECODE][$HEXDECODE()]]=, =[[#FuncHEXENCODE][$HEXENCODE()]]=, =[[#FuncLEFTTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]=, =[[#FuncXOR][$XOR()]]= #FuncCEILING ---+++ CEILING( num ) -- return the smallest integer following a number * The ceiling(x) is the smallest integer not less than x * Use =$INT()= to truncate a number towards zero; use =$FLOOR()= to get the largest previous integer * Syntax: ==$CEILING( num )== * Example: ==%<nop>CALC{$CEILING(5.4)}%== returns ==6== * Example: ==%<nop>CALC{$CEILING(-5.4)}%== returns ==-5== * Related: =[[#FuncEVAL][$EVAL()]]=, =[[#FuncFLOOR][$FLOOR()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncROUND][$ROUND()]]=, =[[#FuncVALUE][$VALUE()]]= #FuncCHAR ---+++ CHAR( number ) -- ASCII character represented by number * Syntax: ==$CHAR( number )== * Example: Example: ==%<nop>CALC{$CHAR(97)}%== returns ==a== * Related: =[[#FuncCODE][$CODE()]]= #FuncCODE ---+++ CODE( text ) -- ASCII numeric value of character * The ASCII numeric value of the first character in text * Syntax: ==$CODE( text )== * Example: ==%<nop>CALC{$CODE(abc)}%== returns ==97== * Related: =[[#FuncCHAR][$CHAR()]]= #FuncCOLUMN ---+++ COLUMN( offset ) -- current column number * The current table column number with an optional offset * Syntax: ==$COLUMN( _offset_ )== * Example: ==%<nop>CALC{$COLUMN()}%== returns ==2== for the second column * Related: =[[#FuncROW][$ROW()]]=, =[[#FuncT][$T()]]= #FuncCOUNTITEMS ---+++ COUNTITEMS( list ) -- count individual items in a list * Syntax: ==$COUNTITEMS( list )== * Example: ==%<nop>CALC{$COUNTITEMS($ABOVE())}%== returns ==Closed: 1, Open: 2== assuming one cell above the current cell contains ==Closed== and two cells contain ==Open== * Related: =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncCOUNTSTR ---+++ COUNTSTR( list, str ) -- count the number of cells in a list equal to a given string * Count the number of cells in a list equal to a given string (if str is specified), or counts the number of non empty cells in a list * Syntax: ==$COUNTSTR( list, _str_ )== * Example: ==%<nop>CALC{$COUNTSTR($ABOVE())}%== counts the number of non empty cells above the current cell * Example: ==%<nop>CALC{$COUNTSTR($ABOVE(), DONE)}%== counts the number of cells equal to ==DONE== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncDEF ---+++ DEF( list ) -- find first non-empty list item or cell * Returns the first list item or cell reference that is not empty * Syntax: ==$DEF( list )== * Example: ==%<nop>CALC{$DEF(R1:C1..R1:C3)}%== * Related: =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLIST][$LIST()]]= #FuncEMPTY ---+++ EMPTY( text ) -- test for empty text * Returns ==1== if =text= is empty, or ==0== if not * Syntax: ==$EMPTY( _text_ )== * Example: ==%<nop>CALC{$EMPTY(foo)}%== returns ==0== * Example: ==%<nop>CALC{$EMPTY()}%== returns ==1== * Example: ==%<nop>CALC{$EMPTY($TRIM( ))}%== returns ==1== * Related: =[[#FuncEXACT][$EXACT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncTRIM][$TRIM()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncEVAL ---+++ EVAL( formula ) -- evaluate a simple mathematical formula * Addition, substraction, multiplication, division and modulus of numbers are supported. Any nesting is permitted * Numbers may be decimal integers (=1234=), binary integers (=0b1110011=), octal integers (=01234=), hexadecimal integers (=0x1234=) or of exponential notation (=12.34e-56=) * Syntax: ==$EVAL( formula )== * Example: ==%<nop>CALC{$EVAL( (5 * 3) / 2 + 1.1 )}%== returns ==8.6== * Related: =[[#FuncCEILING][$CEILING()]]=, =[[#FuncEXEC][$EXEC()]]=, =[[#FuncFLOOR][$FLOOR()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncMOD][$MOD()]]=, =[[#FuncROUND][$ROUND()]]=, =[[#FuncVALUE][$VALUE()]]= #FuncEVEN ---+++ EVEN( num ) -- test for even number * Syntax: ==$EVEN( num )== * Example: ==%<nop>CALC{$EVEN(2)}%== returns ==1== * Related: =[[#FuncABS][$ABS()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncMOD][$MOD()]]=, =[[#FuncODD][$ODD()]]=, =[[#FuncSIGN][$SIGN()]]= #FuncEXACT ---+++ EXACT( text1, text2 ) -- compare two text strings * Compares two text strings and returns ==1== if they are exactly the same, or ==0== if not * Syntax: ==$EXACT( text1, _text2_ )== * Example: ==%<nop>CALC{$EXACT(foo, Foo)}%== returns ==0== * Example: ==%<nop>CALC{$EXACT(foo, $LOWER(Foo))}%== returns ==1== * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncTRIM][$TRIM()]]= #FuncEXEC ---+++ EXEC( formula ) -- execute a spreadsheet formula * Execute a spreadsheet formula, typically retrieved from a variable. This can be used to store a formula in a variable once and execute it many times using different parameters. * Syntax: ==$EXEC( formula )== * Example: ==%<nop>CALC{$SET(msg, $NOEXEC(Hi $GET(name)))}%== sets the =msg= variable with raw formula =Hi $GET(name)= * Example: ==%<nop>CALC{$SET(name, Tom) $EXEC($GET(msg))}%== executes content of =msg= variable and returns =Hi Tom= * Example: ==%<nop>CALC{$SET(name, Jerry) $EXEC($GET(msg))}%== returns =Hi Jerry= * Related: =[[#FuncEVAL][$EVAL()]]=, =[[#FuncGET][$GET()]]=, =[[#FuncNOEXEC][$NOEXEC()]]=, =[[#FuncSET][$SET()]]= #FuncEXISTS ---+++ EXISTS( topic ) -- check if topic exists * Topic can be =TopicName= or a =Web.TopicName=. Current web is used if web is not specified. * Syntax: ==$EXISTS( topic )== * Example: ==%<nop>CALC{$EXISTS(<nop>%HOMETOPIC%)}%== returns ==1== * Example: ==%<nop>CALC{$EXISTS(<nop>ThisDoesNotExist)}%== returns ==0== * Related: =[[#FuncEXACT][$EXACT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncTRIM][$TRIM()]]= #FuncEXP ---+++ EXP( num ) -- exponent (e) raised to the power of a number * EXP is the inverse of the LN function * Syntax: ==$EXP( num )== * Example: ==%<nop>CALC{$EXP(1)}%== returns ==2.71828182845905== * Related: =[[#FuncLN][$LN()]]=, =[[#FuncLOG][$LOG()]]= #FuncFILTER ---+++ FILTER( expression, text ) -- filter out characters from text * Remove characters from a =text= string. The filter is applied multiple times. * The =expression= can be a sequence of characters or a %SYSTEMWEB%.RegularExpression. Use tokens in the =expression= if needed: =$comma= for comma, =$sp= for space. The =text= may contain commas. * Syntax: ==$FILTER( chars, text )== * Example: ==%<nop>CALC{$FILTER(f, fluffy)}%== returns ==luy== - filter out a character multiple times * Example: ==%<nop>CALC{$FILTER(an Franc, San Francisco)}%== returns ==Sisco== - cut a string * Example: ==%<nop>CALC{$FILTER($sp, Cat and Mouse)}%== returns ==CatandMouse== - remove all spaces * Example: ==%<nop>CALC{$FILTER([^0-9], Project-ID-1234)}%== returns ==1234== - filter in digits, e.g. keep only digits * Example: ==%<nop>CALC{$FILTER([^a-zA-Z0-9 ], Stupid mistake*%@^! Fixed)}%== returns ==Stupid mistake Fixed== - keep only alphanumeric characters and spaces * Example: ==%<nop>CALC{$FILTER([^a-zA-Z0-9], $PROPER(an EXELLENT idea.))}%== returns ==AnExcellentIdea== - turn a string into a %SYSTEMWEB%.WikiWord topic name * Related: =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]=, =[[#FuncTRIM][$TRIM()]]= #FuncFIND ---+++ FIND( string, text, start ) -- find one string within another string * Finds one text =string=, within another =text=, and returns the number of the starting position of =string=, from the first character of =text=. This search is case sensitive and is not a regular expression search; use =$SEARCH()= for regular expression searching. Starting position is 1; a 0 is returned if nothing is matched. * Syntax: ==$FIND( string, text, _start_ )== * Example: ==%<nop>CALC{$FIND(f, fluffy)}%== returns ==1== * Example: ==%<nop>CALC{$FIND(f, fluffy, 2)}%== returns ==4== * Example: ==%<nop>CALC{$FIND(@, fluffy, 1)}%== returns ==0== * Related: =[[#FuncFILTER][$FILTER()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]= #FuncFLOOR ---+++ FLOOR( num ) -- return the largest integer preceding a number * The floor(x) is the largest integer not greater than x * Use =$INT()= to truncate a number towards zero; use =$CEILING()= to get the smallest following integer * Syntax: ==$FLOOR( num )== * Example: ==%<nop>CALC{$FLOOR(5.4)}%== returns ==5== * Example: ==%<nop>CALC{$FLOOR(-5.4)}%== returns ==-6== * Related: =[[#FuncCEILING][$CEILING()]]=, =[[#FuncEVAL][$EVAL()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncROUND][$ROUND()]]=, =[[#FuncVALUE][$VALUE()]]= #FuncFORMAT ---+++ FORMAT( type, precision, number ) -- format a number to a certain type and precision * Supported =type=: * =COMMA= for comma format, such as =12,345.68= * =DOLLAR= for Dollar format, such as =$12,345.68= * =KB= for Kilo Byte format, such as =1205.63 KB= * =MB= for Mega Byte format, such as =1.18 MB= * =KBMB= for Kilo/Mega/Giga/Tera Byte auto-adjust format * =NUMBER= for number, such as =12345.7= * =PERCENT= for percent format, such as =12.3%= * The =precision= indicates the the number of digits after the dot * Syntax: ==$FORMAT( type, prec, number )== * Example: ==%<nop>CALC{$FORMAT(COMMA, 2, 12345.6789)}%== returns ==12,345.68== * Example: ==%<nop>CALC{$FORMAT(DOLLAR, 2, 12345.6789)}%== returns ==$12,345.68== * Example: ==%<nop>CALC{$FORMAT(KB, 2, 1234567)}%== returns ==1205.63 KB== * Example: ==%<nop>CALC{$FORMAT(MB, 2, 1234567)}%== returns ==1.18 MB== * Example: ==%<nop>CALC{$FORMAT(KBMB, 2, 1234567)}%== returns ==1.18 MB== * Example: ==%<nop>CALC{$FORMAT(KBMB, 2, 1234567890)}%== returns ==1.15 GB== * Example: ==%<nop>CALC{$FORMAT(NUMBER, 1, 12345.67)}%== returns ==12345.7== * Example: ==%<nop>CALC{$FORMAT(PERCENT, 1, 0.1234567)}%== returns ==12.3%== * Related: =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATTIMEDIFF][$FORMATTIMEDIFF()]]=, =[[#FuncROUND][$ROUND()]]= #FuncFORMATGMTIME ---+++ FORMATGMTIME( serial, text ) -- convert a serialized date into a GMT date string * The date string represents the time in Greenwich time zone. Same variable expansion as in =$FORMATTIME()=. * Syntax: ==$FORMATGMTIME( serial, text )== * Example: ==%<nop>CALC{$FORMATGMTIME(1041379200, $day $mon $year)}%== returns ==01 Jan 2003== * Related: =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATTIMEDIFF][$FORMATTIMEDIFF()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]=, =[[#FuncTODAY][$TODAY()]]= #FuncFORMATTIME ---+++ FORMATTIME( serial, text ) -- convert a serialized date into a date string * The following variables in =text= are expanded: * =$second= - seconds, 00..59 * =$minute= - minutes, 00..59 * =$hour= - hours, 00..23 * =$day= - day of month, 01..31 * =$month= - month, 01..12 * =$mon= - month in text format, Jan..Dec * =$year= - 4 digit year, 1999 * =$ye= - 2 digit year, 99 * =$wd= - day number of the week, 1 for Sunday, 2 for Monday, etc * =$wday= - day of the week, Sun..Sat * =$weekday= - day of the week, Sunday..Saturday * =$yearday= - day of the year, 1..365, or 1..366 in leap years * =$isoweek= - ISO 8601 week number, one or two digits, 1..53 * =$isoweek(format)= - formatted [[http://en.wikipedia.org/wiki/ISO_8601#Week_dates][ISO 8601 week number]]. These variables are expanded in =format=: * =$isoweek($year)= - year of ISO 8601 week number, such as =2009= for 2010-01-03 * =$isoweek($wk)= - 2 digit ISO 8601 week number, such as =53= for 2010-01-03 * =$isoweek($day)= - day of ISO 8601 week number, starting with 1 for Monday, such as =7= for 2010-01-03 * =$isoweek($iso)= - full year-week ISO week number, such as =2009-W53= for 2010-01-03 * =$isoweek($yearW$wk$day)= - full year-week-day ISO week number, such as =2009W537= for 2010-01-03 * =$isoweek($year-W$wk-$day)= - full year-week-day ISO week number, such as =2009-W53-7= for 2010-01-03 * =$isoweek($year-W$wk)= - year-week ISO 8601 week number, such as =2009-W53= for 2010-01-03 * Date is assumed to be server time; add =GMT= to =text= to indicate Greenwich time zone, or use =$FORMATGMTIME()=. * Syntax: ==$FORMATTIME( serial, text )== * Example: ==%<nop>CALC{$FORMATTIME(0, $year/$month/$day GMT)}%== returns ==1970/01/01 GMT== * Related: =[[#FuncFORMATGMTIME][$FORMATGMTIME()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncFORMATTIMEDIFF][$FORMATTIMEDIFF()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]=, =[[#FuncTODAY][$TODAY()]]= #FuncFORMATTIMEDIFF ---+++ FORMATTIMEDIFF( unit, precision, time ) -- convert elapsed time to a string * Convert elapsed =time= to a human readable format, such as: =12 hours and 3 minutes= * The input =unit= can be =second=, =minute=, =hour=, =day=, =month=, =year=. Note: An approximation is used for month and year calculations. * The =precision= indicates the number of output units to use * Syntax: ==$FORMATTIMEDIFF( unit, precision, time )== * Example: ==%<nop>CALC{$FORMATTIMEDIFF(min, 1, 200)}%== returns ==3 hours== * Example: ==%<nop>CALC{$FORMATTIMEDIFF(min, 2, 200)}%== returns ==3 hours and 20 minutes== * Example: ==%<nop>CALC{$FORMATTIMEDIFF(min, 1, 1640)}%== returns ==1 day== * Example: ==%<nop>CALC{$FORMATTIMEDIFF(min, 2, 1640)}%== returns ==1 day and 3 hours== * Example: ==%<nop>CALC{$FORMATTIMEDIFF(min, 3, 1640)}%== returns ==1 day, 3 hours and 20 minutes== * Related: =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]= #FuncGET ---+++ GET( name ) -- get the value of a previously set variable * Specify the variable name (alphanumeric characters and underscores). An empty string is returned if the variable does not exist. Use =$SET()= to set a variable first. Unlike table ranges, variables live for the time of the page view and persist across tables, i.e. you can use it to summarize results across several tables. * Syntax: ==$GET( name )== * Example: ==%<nop>CALC{$GET(my_total)}%== returns the value of the =my_total= variable * Related: =[[#FuncEXEC][$EXEC()]]=, =[[#FuncNOEXEC][$NOEXEC()]]=, =[[#FuncSET][$SET()]]=, =[[#FuncSETIFEMPTY][$SETIFEMPTY()]]=, =[[#FuncSETM][$SETM()]]=, =[[#FuncWHILE][$WHILE()]]=, TWiki:Plugins.SetGetPlugin #FuncHEXDECODE ---+++ HEXDECODE( hexcode ) -- convert hexadecimal code to string * Decode a hexadecimal string, typically encoded with $HEXENCODE(). * Syntax: ==$HEXDECODE( hexcode )== * Example: ==%<nop>CALC{$HEXDECODE(687474703A2F2F7477696B692E6F72672F)}%== returns ==http://twiki.org/== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncHEXENCODE][$HEXENCODE()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncHEXENCODE ---+++ HEXENCODE( text ) -- encode text into hexadecimal code * Each character of =text= is encoded into two hexadecimal numbers. * Syntax: ==$HEXENCODE( text )== * Example: ==%<nop>CALC{$HEXENCODE(<nop>http://twiki.org/)}%== returns ==687474703A2F2F7477696B692E6F72672F== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncHEXDECODE][$HEXDECODE()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncIF ---+++ IF( condition, value if true, value if 0 ) -- return a value based on a condition * The condition can be a number (where ==0== means condition not met), or two numbers with a comparison operator ==<== (less than), ==<=<nop>== (less than or equal), ==<nop>==<nop>== (equal), ==<nop>!=<nop>== (not equal), ==>=<nop>== (greater than or equal), ==>== (greater than). * Syntax: ==$IF( condition, value if true, value if 0 )== * Example: ==%<nop>CALC{$IF($T(R1:C5) > 1000, Over Budget, OK)}%== returns ==Over Budget== if value in R1:C5 is over 1000, ==OK== if not * Example: ==%<nop>CALC{$IF($EXACT($T(R1:C2),), empty, $T(R1:C2))}%== returns the content of R1:C2 or ==empty== if empty * Example: ==%<nop>CALC{$SET(val, $IF($T(R1:C2) == 0, zero, $T(R1:C2)))}%== sets a variable conditionally * Related: =[[#FuncAND][$AND()]]=, =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncNOT][$NOT()]]=, =[[#FuncOR][$OR()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncINSERTSTRING ---+++ INSERTSTRING( text, start, new ) -- insert a string into a text string * Insert =new= string into text string =text= to the right of =start= position. Position starts at 1; use a negative =start= to count from the end of the text * Syntax: ==$INSERTSTRING( text, start, new )== * Example: ==%<nop>CALC{$INSERTSTRING(abcdefg, 2, XYZ)}%== returns ==abXYZcdefg== * Example: ==%<nop>CALC{$INSERTSTRING(abcdefg, -2, XYZ)}%== returns ==abcdeXYZfg== * Related: =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncINT ---+++ INT( formula ) -- evaluate formula and return integer truncated towards 0 * Addition, substraction, multiplication, division and modulus of numbers are supported. Any nesting is permitted * Numbers may be decimal integers (=1234=), binary integers (=0b1110011=), octal integers (=01234=), hexadecimal integers (=0x1234=) or of exponential notation (=12.34e-56=) * If you expect a single decimal integer value with leading zeros, use ==$INT( $VALUE( number ) )== * Syntax: ==$INT( formula )== * Example: ==%<nop>CALC{$INT(10 / 4)}%== returns ==2== * Example: ==%<nop>CALC{$INT($VALUE(09))}%== returns ==9== * Related: =[[#FuncCEILING][$CEILING()]]=, =[[#FuncEVAL][$EVAL()]]=, =[[#FuncFLOOR][$FLOOR()]]=, =[[#FuncROUND][$ROUND()]]=, =[[#FuncVALUE][$VALUE()]]= #FuncISDIGIT ---+++ ISDIGIT( text ) -- test for digits * Test for one or more digits (0...9) * Syntax: ==$ISDIGIT( text )== * Example: ==%<nop>CALC{$ISDIGIT(123)}%== returns ==1== * Example: ==%<nop>CALC{$ISDIGIT(-7)}%== returns ==0== * Related: =[[#FuncABS][$ABS()]]=, =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEVEN][$EVEN()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncMOD][$MOD()]]=, =[[#FuncODD][$ODD()]]=, =[[#FuncSIGN][$SIGN()]]=, =[[#FuncVALUE][$VALUE()]]= #FuncISLOWER ---+++ ISLOWER( text ) -- test for lower case text * Syntax: ==$ISLOWER( text )== * Example: ==%<nop>CALC{$ISLOWER(apple)}%== returns ==1== * Example: ==%<nop>CALC{$ISLOWER(apple tree)}%== returns ==0== (text contains a space character) * Example: ==%<nop>CALC{$ISLOWER(ORANGE)}%== returns ==0== * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncLOWER][$LOWER()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncUPPER][$UPPER()]]= #FuncISUPPER ---+++ ISUPPER( text ) -- test for upper case text * Can be used to test for ACRONYMS * Syntax: ==$ISUPPER( text )== * Example: ==%<nop>CALC{$ISUPPER(apple)}%== returns ==0== * Example: ==%<nop>CALC{$ISUPPER(ORANGE)}%== returns ==1== * Example: ==%<nop>CALC{$ISUPPER(ORANGE GARDEN)}%== returns ==0== (text contains a space character) * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncLOWER][$LOWER()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncUPPER][$UPPER()]]= #FuncISWIKIWORD ---+++ ISWIKIWORD( text ) -- test for !WikiWord * A %SYSTEMWEB%.WikiWord has a sequence of UPPER, lower/digit, UPPER, optional mixed case alphanumeric characters * Can be used together with =$ISUPPER()= to test for valid topic names * Syntax: ==$ISWIKIWORD( text )== * Example: ==%<nop>CALC{$ISWIKIWORD(<nop>GoldenGate)}%== returns ==1== * Example: ==%<nop>CALC{$ISWIKIWORD(whiteRafting)}%== returns ==0== * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXISTS][$EXISTS()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncPROPERSPACE][$PROPERSPACE()]]= #FuncLEFT ---+++ LEFT( ) -- address range of cells to the left of the current cell * Syntax: ==$LEFT( )== * Example: ==%<nop>CALC{$SUM($LEFT())}%== returns the sum of cells to the left of the current cell * Related: =[[#FuncABOVE][$ABOVE()]]=, =[[#FuncRIGHT][$RIGHT()]]= #FuncLEFTSTRING ---+++ LEFTSTRING( text, num ) -- extract characters at the beginning of a text string * Retrieve the =num= of characters from the left end of =text=; the leftmost character is returned if =num= is missing * Syntax: ==$LEFTSTRING( text, _num_ )== * Example: ==%<nop>CALC{$LEFTSTRING(abcdefg)}%== returns ==a== * Example: ==%<nop>CALC{$LEFTSTRING(abcdefg, 5)}%== returns ==abcde== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncLENGTH ---+++ LENGTH( text ) -- length of text in bytes * Syntax: ==$LENGTH( text )== * Example: ==%<nop>CALC{$LENGTH(abcd)}%== returns ==4== * Related: =[[#FuncLISTSIZE][$LISTSIZE()]]= #FuncLIST ---+++ LIST( range ) -- convert content of a cell range into a list * Convert the content of a range of cells into a flat list, delimited by comma. Cells containing commas are merged into the list * Syntax: ==$LIST( range )== * Example: ==%<nop>CALC{$LIST($LEFT())}%== returns ==Apples, Lemons, Oranges, Kiwis== assuming the cells to the left contain ==| Apples | Lemons, Oranges | Kiwis |== * Related: =[[#FuncAVERAGE][$AVERAGE()]]=, =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncDEF][$DEF()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTJOIN][$LISTJOIN()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTRAND][$LISTRAND()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSHUFFLE][$LISTSHUFFLE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTTRUNCATE][$LISTTRUNCATE()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPRODUCT][$PRODUCT()]]=, =[[#FuncSPLIT][$SPLIT()]]=, =[[#FuncSUM][$SUM()]]=, =[[#FuncSUMDAYS][$SUMDAYS()]]=, =[[#FuncSUMPRODUCT][$SUMPRODUCT()]]= #FuncLISTIF ---+++ LISTIF( condition, list ) -- remove elements from a list that do not meet a condition * In addition to the condition described in =[[#FuncIF][$IF()]]=, you can use ==$item== to indicate the current element, and ==$index== for the list index, starting at 1 * Syntax: ==$LISTIF( condition, list )== * Example: ==%<nop>CALC{$LISTIF($item > 12, 14, 7, 25)}%== returns ==14, 25== * Example: ==%<nop>CALC{$LISTIF($NOT($EXACT($item,)), A, B, , E)}%== returns non-empty elements ==A, B, E== * Example: ==%<nop>CALC{$LISTIF($index > 2, A, B, C, D)}%== returns ==C, D== * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSUM][$SUM()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncLISTITEM ---+++ LISTITEM( index, list ) -- get one element of a list * Index is 1 to size of list; use a negative number to count from the end of the list * Syntax: ==$LISTITEM( index, list )== * Example: ==%<nop>CALC{$LISTITEM(2, Apple, Orange, Apple, Kiwi)}%== returns ==Orange== * Example: ==%<nop>CALC{$LISTITEM(-1, Apple, Orange, Apple, Kiwi)}%== returns ==Kiwi== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTRAND][$LISTRAND()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSPLIT][$SPLIT()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTJOIN ---+++ LISTJOIN( separator, list ) -- convert a list into a string * By default, list items are separated by a comma and a space. Use this function to indicate a specific =separator= string, which may include =$comma= for comma, =$n= for newline, =$sp= for space, and =$empty= to join a list without a separator. * Syntax: ==$LISTJOIN( separator, list )== * Example: ==%<nop>CALC{$LISTJOIN($n, Apple, Orange, Apple, Kiwi)}%== returns the four items separated by new lines * Example: ==%<nop>CALC{$LISTJOIN($empty, Apple, Orange, Apple, Kiwi)}%== returns ==AppleOrangeAppleKiwi== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncSPLIT][$SPLIT()]]= #FuncLISTMAP ---+++ LISTMAP( formula, list ) -- evaluate and update each element of a list * In the formula you can use ==$item== to indicate the element; ==$index== to show the index of the list, starting at 1. If ==$item== is omitted, the item is appended to the formula. * Syntax: ==$LISTMAP( formula, list )== * Example: ==%<nop>CALC{$LISTMAP($index: $EVAL(2 * $item), 3, 5, 7, 11)}%== returns ==1: 6, 2: 10, 3: 14, 4: 22== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSPLIT][$SPLIT()]]=, =[[#FuncSUM][$SUM()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncLISTNONEMPTY ---+++ LISTNONEMPTY( list ) -- remove all empty elements from a list * Syntax: ==$LISTNONEMPTY( list )== * Example: ==%<nop>CALC{$LISTNONEMPTY(, Apple, Orange, , Kiwi)}%== returns ==Apple, Orange, Kiwi== * Related: =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]= #FuncLISTRAND ---+++ LISTRAND( list ) -- get one random element of a list * Syntax: ==$LISTRAND( list )== * Example: ==%<nop>CALC{$LISTRAND(Apple, Orange, Apple, Kiwi)}%== returns one of the four elements * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTSHUFFLE][$LISTSHUFFLE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncRAND][$RAND()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTREVERSE ---+++ LISTREVERSE( list ) -- opposite order of a list * Syntax: ==$LISTREVERSE( list )== * Example: ==%<nop>CALC{$LISTREVERSE(Apple, Orange, Apple, Kiwi)}%== returns ==Kiwi, Apple, Orange, Apple== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTSHUFFLE ---+++ LISTSHUFFLE( list ) -- shuffle element of a list in random order * Syntax: ==$LISTSHUFFLE( list )== * Example: ==%<nop>CALC{$LISTSHUFFLE(Apple, Orange, Apple, Kiwi)}%== returns the four elements in random order * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTRAND][$LISTRAND()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncRAND][$RAND()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTSIZE ---+++ LISTSIZE( list ) -- number of elements in a list * Syntax: ==$LISTSIZE( list )== * Example: ==%<nop>CALC{$LISTSIZE(Apple, Orange, Apple, Kiwi)}%== returns ==4== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTJOIN][$LISTJOIN()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTTRUNCATE][$LISTTRUNCATE()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSPLIT][$SPLIT()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTSORT ---+++ LISTSORT( list ) -- sort a list * Sorts a list in ASCII order, or numerically if all elements are numeric * Syntax: ==$LISTSORT( list )== * Example: ==%<nop>CALC{$LISTSORT(Apple, Orange, Apple, Kiwi)}%== returns ==Apple, Apple, Kiwi, Orange== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSHUFFLE][$LISTSHUFFLE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTTRUNCATE ---+++ LISTTRUNCATE( size, list ) -- truncate list to size * Specify the desired size of the list; use a negative number to count from the end of the list * Syntax: ==$LISTTRUNCATE( size, list )== * Example: ==%<nop>CALC{$LISTTRUNCATE(2, Apple, Orange, Kiwi)}%== returns ==Apple, Orange== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncLISTUNIQUE][$LISTUNIQUE()]]=, =[[#FuncSUM][$SUM()]]= #FuncLISTUNIQUE ---+++ LISTUNIQUE( list ) -- remove all duplicates from a list * Syntax: ==$LISTUNIQUE( list )== * Example: ==%<nop>CALC{$LISTUNIQUE(Apple, Orange, Apple, Kiwi)}%== returns ==Apple, Orange, Kiwi== * Related: =[[#FuncCOUNTITEMS][$COUNTITEMS()]]=, =[[#FuncCOUNTSTR][$COUNTSTR()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncLISTITEM][$LISTITEM()]]=, =[[#FuncLISTMAP][$LISTMAP()]]=, =[[#FuncLISTNONEMPTY][$LISTNONEMPTY()]]=, =[[#FuncLISTREVERSE][$LISTREVERSE()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]=, =[[#FuncLISTSORT][$LISTSORT()]]=, =[[#FuncSUM][$SUM()]]= #FuncLN ---+++ LN( num ) -- natural logarithm of a number * LN is the inverse of the EXP function * Syntax: ==$LN( num )== * Example: ==%<nop>CALC{$LN(10)}%== returns ==2.30258509299405== * Related: =[[#FuncEXP][$EXP()]]=, =[[#FuncLOG][$LOG()]]= #FuncLOG ---+++ LOG( num, base ) -- logarithm of a number to a given base * base-10 logarithm of a number (if base is 0 or not specified), else logarithm of a number to the given base * Syntax: ==$LOG( num, _base_ )== * Example: ==%<nop>CALC{$LOG(1000)}%== returns ==3== * Example: ==%<nop>CALC{$LOG(16, 2)}%== returns ==4== * Related: =[[#FuncEXP][$EXP()]]=, =[[#FuncLN][$LN()]]= #FuncLOWER ---+++ LOWER( text ) -- lower case string of a text * Syntax: ==$LOWER(text)== * Example: ==%<nop>CALC{$LOWER( $T(R1:C5) )}%== returns the lower case string of the text in cell ==R1:C5== * Related: =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncPROPERSPACE][$PROPERSPACE()]]=, =[[#FuncTRIM][$TRIM()]]=, =[[#FuncUPPER][$UPPER()]]= #FuncMAX ---+++ MAX( list ) - biggest value of a list or range of cells * Syntax: ==$MAX( list )== * Example: To find the biggest number to the left of the current cell, write: ==%<nop>CALC{$MAX($LEFT())}%== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncMEDIAN ---+++ MEDIAN( list ) -- median of a list or range of cells * Syntax: ==$MEDIAN( list )== * Example: ==%<nop>CALC{$MEDIAN(3, 9, 4, 5)}%== returns ==4.5== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncMIN ---+++ MIN( list ) -- smallest value of a list or range of cells * Syntax: ==$MIN( list )== * Example: ==%<nop>CALC{$MIN(15, 3, 28)}%== returns ==3== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncMOD ---+++ MOD( num, divisor ) -- reminder after dividing ==num== by ==divisor== * Syntax: ==$MOD( num, divisor )== * Example: ==%<nop>CALC{$MOD(7, 3)}%== returns ==1== * Related: =[[#FuncEVAL][$EVAL()]]=, =[[#FuncEVEN][$EVEN()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncODD][$ODD()]]=, =[[#FuncSIGN][$SIGN()]]= #FuncNOEXEC ---+++ NOEXEC( formula ) -- do not execute a spreadsheet formula * Prevent a formula from getting executed. This is typically used to store a raw formula in a variable for later use as described in =[[#FuncEXEC][$EXEC()]]=. * Syntax: ==$NOEXEC( formula )== * Example: ==%<nop>CALC{$SET(msg, $NOEXEC(Hi $GET(name)))}%== sets the =msg= variable with the formula =Hi $GET(name)= without executing it * Related: =[[#FuncEVAL][$EVAL()]]=, =[[#FuncEXEC][$EXEC()]]=, =[[#FuncGET][$GET()]]=, =[[#FuncSET][$SET()]]= #FuncNOP ---+++ NOP( text ) -- no-operation * Useful to change the order of plugin execution. For example, it allows preprocessing to be done before =%<nop>SEARCH{}%= is evaluated. The percent character '%' can be escaped with =$percnt=. The quote character '"' can be escaped with =$quot=. * Syntax: ==$NOP( text )== #FuncNOT ---+++ NOT( num ) -- reverse logic of a number * Returns 0 if ==num== is not zero, 1 if zero * Syntax: ==$NOT( num )== * Example: ==%<nop>CALC{$NOT(0)}%== returns ==1== * Related: =[[#FuncAND][$AND()]]=, =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncOR][$OR()]]=, =[[#FuncWHILE][$WHILE()]]=, =[[#FuncXOR][$XOR()]]= #FuncODD ---+++ ODD( num ) -- test for odd number * Syntax: ==$ODD( num )== * Example: ==%<nop>CALC{$ODD(2)}%== returns ==0== * Related: =[[#FuncABS][$ABS()]]=, =[[#FuncEVEN][$EVEN()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncMOD][$MOD()]]=, =[[#FuncSIGN][$SIGN()]]= #FuncOR ---+++ OR( list ) -- logical OR of a list * Syntax: ==$OR( list )== * Example: ==%<nop>CALC{$OR(1, 0, 1)}%== returns ==1== * Related: =[[#FuncAND][$AND()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncNOT][$NOT()]]=, =[[#FuncWHILE][$WHILE()]]=, =[[#FuncXOR][$XOR()]]= #FuncPERCENTILE ---+++ PERCENTILE( num, list ) -- percentile of a list or range of cells * Calculates the num-th percentile, useful to establish a threshold of acceptance. num is the percentile value, range 0..100 * Syntax: ==$PERCENTILE( num, list )== * Example: ==%<nop>CALC{$PERCENTILE(75, 400, 200, 500, 100, 300)}%== returns ==450== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncPI ---+++ PI( ) -- mathematical constant Pi, 3.14159265358979 * Syntax: ==$PI( )== * Example: ==%<nop>CALC{$PI()}%== returns ==3.14159265358979== #FuncPRODUCT ---+++ PRODUCT( list ) -- product of a list or range of cells * Syntax: ==$PRODUCT( list )== * Example: To calculate the product of the cells to the left of the current one use ==%<nop>CALC{$PRODUCT($LEFT())}%== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncPRODUCT][$PRODUCT()]]=, =[[#FuncSUM][$SUM()]]=, =[[#FuncSUMPRODUCT][$SUMPRODUCT()]]= #FuncPROPER ---+++ PROPER( text ) -- properly capitalize text * Capitalize letters that follow any character other than a letter; convert all other letters to lowercase letters * Syntax: ==$PROPER( text )== * Example: ==%<nop>CALC{$PROPER(a small STEP)}%== returns ==A Small Step== * Example: ==%<nop>CALC{$PROPER(f1 (formula-1))}%== returns ==F1 (Formula-1)== * Related: =[[#FuncFILTER][$FILTER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncLOWER][$LOWER()]]=, =[[#FuncPROPERSPACE][$PROPERSPACE()]]=, =[[#FuncTRIM][$TRIM()]]=, =[[#FuncUPPER][$UPPER()]]= #FuncPROPERSPACE ---+++ PROPERSPACE( text ) -- properly space out <nop>WikiWords * Properly spaces out %SYSTEMWEB%.WikiWords preceeded by white space, parenthesis, or ==][==. Words listed in the DONTSPACE %SYSTEMWEB%.%WIKIPREFSTOPIC% variable or DONTSPACE plugins setting are excluded * Syntax: ==$PROPERSPACE( text )== * Example: Assuming DONTSPACE contains <nop>MacDonald: ==%<nop>CALC{$PROPERSPACE(Old <nop>MacDonald had a <nop>ServerFarm, <nop>EeEyeEeEyeOh)}%== returns ==Old <nop>MacDonald had a Server Farm, Ee Eye Ee Eye Oh== * Related: =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncLOWER][$LOWER()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncTRIM][$TRIM()]]=, =[[#FuncUPPER][$UPPER()]]= #FuncRAND ---+++ RAND( max ) -- random number * Random number, evenly distributed between 0 and ==max==, or 0 and 1 if max is not specified * Syntax: ==$RAND( max )== * Related: =[[#FuncEVAL][$EVAL()]]=, =[[#FuncLISTRAND][$LISTRAND()]]=, =[[#FuncLISTSHUFFLE][$LISTSHUFFLE()]]= #FuncREPEAT ---+++ REPEAT( text, num ) -- repeat text a number of times * Syntax: ==$REPEAT( text, num )== * Example: ==%<nop>CALC{$REPEAT(/\, 5)}%== returns ==/\/\/\/\/\== * Related: =[[#FuncWHILE][$WHILE()]]= #FuncREPLACE ---+++ REPLACE( text, start, num, new ) -- replace part of a text string * Replace =num= number of characters of text string =text=, starting at =start=, with new text =new=. Starting position is 1; use a negative =start= to count from the end of the text * Syntax: ==$REPLACE( text, start, num, new )== * Example: ==%<nop>CALC{$REPLACE(abcdefghijk, 6, 5, *)}%== returns ==abcde*k== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncRIGHT ---+++ RIGHT( ) -- address range of cells to the right of the current cell * Syntax: ==$RIGHT( )== * Example: ==%<nop>CALC{$SUM($RIGHT())}%== returns the sum of cells to the right of the current cell * Related: =[[#FuncABOVE][$ABOVE()]]=, =[[#FuncLEFT][$LEFT()]]= #FuncRIGHTSTRING ---+++ RIGHTSTRING( text, num ) -- extract characters at the end of a text string * Retrieve the =num= of characters from the right end of =text=; the rightmost character is returned if =num= is missing * Syntax: ==$RIGHTSTRING( text, _num_ )== * Example: ==%<nop>CALC{$RIGHTSTRING(abcdefg)}%== returns ==g== * Example: ==%<nop>CALC{$RIGHTSTRING(abcdefg, 5)}%== returns ==cdefg== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncROUND ---+++ ROUND( formula, digits ) -- round a number * Evaluates a simple ==formula== and rounds the result up or down to the number of digits if ==digits== is positive; to the nearest integer if digits is missing; or to the left of the decimal point if digits is negative * Syntax: ==$ROUND( formula, digits )== * Example: ==%<nop>CALC{$ROUND(3.15, 1)}%== returns ==3.2== * Example: ==%<nop>CALC{$ROUND(3.149, 1)}%== returns ==3.1== * Example: ==%<nop>CALC{$ROUND(-2.475, 2)}%== returns ==-2.48== * Example: ==%<nop>CALC{$ROUND(34.9, -1)}%== returns ==30== * Related: =[[#FuncCEILING][$CEILING()]]=, =[[#FuncEVAL][$EVAL()]]=, =[[#FuncFLOOR][$FLOOR()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncFORMAT][$FORMAT()]]= #FuncROW ---+++ ROW( offset ) -- current row number * The current table row number with an optional offset * Syntax: ==$ROW( _offset_ )== * Example: To get the number of rows excluding table heading (first row) and summary row (last row you are in), write: ==%<nop>CALC{$ROW(-2)}%== * Related: =[[#FuncCOLUMN][$COLUMN()]]=, =[[#FuncT][$T()]]= #FuncSEARCH ---+++ SEARCH( string, text, start ) -- search a string within a text * Finds one text =string=, within another =text=, and returns the number of the starting position of =string=, from the first character of =text=. This search is a %SYSTEMWEB%.RegularExpression search; use =$FIND()= for non-regular expression searching. Starting position is 1; a 0 is returned if nothing is matched * Syntax: ==$SEARCH( string, text, _start_ )== * Example: ==%<nop>CALC{$SEARCH([uy], fluffy)}%== returns ==3== * Example: ==%<nop>CALC{$SEARCH([uy], fluffy, 4)}%== returns ==6== * Example: ==%<nop>CALC{$SEARCH([abc], fluffy,)}%== returns ==0== * Related: =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]= #FuncSET ---+++ SET( name, value ) -- set a variable for later use * Specify the variable name (alphanumeric characters and underscores) and the value. The value may contain a formula; formulae are evaluated before the variable assignment; see =[[#FuncNOEXEC][$NOEXEC()]]= if you want to prevent that. This function returns no output. Use =$GET()= to retrieve variables. Unlike table ranges, variables live for the time of the page view and persist across tables, i.e. you can use it to summarize results across several tables and also across included topics * Syntax: ==$SET( name, value )== * Example: ==%<nop>CALC{$SET(my_total, $SUM($ABOVE()))}%== sets the =my_total= variable to the sum of all table cells located above the current cell and returns an empty string * Related: =[[#FuncEXEC][$EXEC()]]=, =[[#FuncGET][$GET()]]=, =[[#FuncNOEXEC][$NOEXEC()]]=, =[[#FuncSETIFEMPTY][$SETIFEMPTY()]]=, =[[#FuncSETM][SETM()]]=, =[[#FuncWHILE][$WHILE()]]=, TWiki:Plugins.SetGetPlugin #FuncSETIFEMPTY ---+++ SETIFEMPTY( name, value ) -- set a variable only if empty * Specify the variable name (alphanumeric characters and underscores) and the value. * Syntax: ==$SETIFEMPTY( name, value )== * Example: ==%<nop>CALC{$SETIFEMPTY(result, default)}%== sets the =result= variable to =default= if the variable is empty or 0; in any case an empty string is returned * Related: =[[#FuncGET][$GET()]]=, =[[#FuncSET][$SET()]]= #FuncSETM ---+++ SETM( name, formula ) -- update an existing variable based on a formula * Specify the variable name (alphanumeric characters and underscores) and the formula. The formula must start with an operator to ==+== (add), ==-== (subtract), ==*== (multiply), or ==/== (divide) something to the variable. This function returns no output. Use =$GET()= to retrieve variables * Syntax: ==$SETM( name, formula )== * Example: ==%<nop>CALC{$SETM(total, + $SUM($LEFT()))}%== adds the sum of all table cells on the left to the =total= variable, and returns an empty string * Related: =[[#FuncGET][$GET()]]=, =[[#FuncSET][$SET()]]=, =[[#FuncSETIFEMPTY][$SETIFEMPTY()]]=, =[[#FuncWHILE][$WHILE()]]= #FuncSIGN ---+++ SIGN( num ) -- sign of a number * Returns -1 if ==num== is negative, 0 if zero, or 1 if positive * Syntax: ==$SIGN( num )== * Example: ==%<nop>CALC{$SIGN(-12.5)}%== returns ==-1== * Related: =[[#FuncABS][$ABS()]]=, =[[#FuncEVAL][$EVAL()]]=, =[[#FuncEVEN][$EVEN()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncNOT][$NOT()]]=, =[[#FuncODD][$ODD()]]= #FuncSPLIT ---+++ SPLIT( separator, text ) -- split a string into a list * Split =text= into a list using =separator= as a delimiter. The =separator= may be a regular expression and may include =$comma= for comma, =$sp= for space and =$empty= to split at each character. Default separator is one or more spaces (=$sp$sp*=). * Syntax: ==$SPLIT( separator, text )== * Example: ==%<nop>CALC{$SPLIT(, Apple Orange Kiwi)}%== returns ==Apple, Orange, Kiwi== * Example: ==%<nop>CALC{$SPLIT(-, Apple-Orange-Kiwi)}%== returns ==Apple, Orange, Kiwi== * Example: ==%<nop>CALC{$SPLIT([-:]$sp*, Apple-Orange: Kiwi)}%== returns ==Apple, Orange, Kiwi== (the separator means: Dash or colon, followed by optional spaces * Example: ==%<nop>CALC{$SPLIT($empty, Apple)}%== returns ==A, p, p, l, e== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncLISTJOIN][$LISTJOIN()]]=, =[[#FuncLISTSIZE][$LISTSIZE()]]= #FuncSQRT ---+++ SQRT( num ) -- square root of a number * Syntax: ==$SQRT( num )== * Example: ==%<nop>CALC{$SQRT(16)}%== returns ==4== #FuncSTDEV ---+++ STDEV( list ) -- standard deviation based on a sample * Calculates the standard deviation, assuming that the =list= is a sample of the population. Use =[[#FuncSTDEVP][$STDEVP()]]= if your data represents the entire population. The standard deviation is a measure of how widely values are dispersed from the average (mean) value. * Syntax: ==$STDEV( list )== * Example: ==%<nop>CALC{$STDEV(R2:C5..R$ROW(-1):C5)}%== returns the standard deviation of column 5, excluding the title row * Example: ==%<nop>CALCULATE{$STDEV(3.50, 5.00, 7.23, 2.99)}%== returns ==1.90205152401295== * Related: =[[#FuncAVERAGE][$AVERAGE()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncSTDEVP ---+++ STDEVP( list ) -- standard deviation based on the entire population * Calculates the standard deviation, assuming that the =list= is the entire population. Use =[[#FuncSTDEV][$STDEV()]]= if your data represents a sample of the population. The standard deviation is a measure of how widely values are dispersed from the average (mean) value. * Syntax: ==$STDEVP( list )== * Example: ==%<nop>CALC{$STDEVP(R2:C5..R$ROW(-1):C5)}%== returns the standard deviation of column 5, excluding the title row * Example: ==%<nop>CALCULATE{$STDEVP(3.50, 5.00, 7.23, 2.99)}%== returns ==1.64722493910213== * Related: =[[#FuncAVERAGE][$AVERAGE()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncVAR][$VAR()]]=, =[[#FuncVARP][$VARP()]]= #FuncSUBSTITUTE ---+++ SUBSTITUTE( text, old, new, instance, option ) -- substitute text * Substitutes =new= text for =old= text in a =text= string. =instance= specifies which occurance of =old= you want to replace. If you specify =instance=, only that instance is replaced. Otherwise, every occurance is changed to the new text. A literal search is performed by default; a %SYSTEMWEB%.RegularExpression search if the =option= is set to ==r== * Syntax: ==$SUBSTITUTE( text, old, _new_, _instance_, _option_ )== * Example: ==%<nop>CALC{$SUBSTITUTE(Good morning, morning, day)}%== returns ==Good day== * Example: ==%<nop>CALC{$SUBSTITUTE(Q2-2012, 2, 3)}%== returns ==Q3-3013== * Example: ==%<nop>CALC{$SUBSTITUTE(Q2-2012,2, 3, 3)}%== returns ==Q2-2013== * Example: ==%<nop>CALC{$SUBSTITUTE(abc123def, [0-9], 9, , r)}%== returns ==abc999def== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncHEXDECODE][$HEXDECODE()]]=, =[[#FuncHEXENCODE][$HEXENCODE()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncSUBSTRING ---+++ SUBSTRING( text, start, num ) -- extract a substring out of a text string * Extract =num= number of characters of text string =text=, starting at =start=. Starting position is 1; use a negative =start= to count from the end of the text * Syntax: ==$SUBSTRING( text, start, num )== * Example: ==%<nop>CALC{$SUBSTRING(abcdefghijk, 3, 5)}%== returns ==cdefg== * Related: =[[#FuncFILTER][$FILTER()]]=, =[[#FuncFIND][$FIND()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSEARCH][$SEARCH()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]=, =[[#FuncTRANSLATE][$TRANSLATE()]]= #FuncSUM ---+++ SUM( list ) -- sum of a list or range of cells * Syntax: ==$SUM( list )== * Example: To sum up column 5 excluding the title row, write ==%<nop>CALC{$SUM(R2:C5..R$ROW(-1):C5)}%== in the last row; or simply ==%<nop>CALC{$SUM($ABOVE())}%== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncPRODUCT][$PRODUCT()]]=, =[[#FuncSUMPRODUCT][$SUMPRODUCT()]]=, =[[#FuncWORKINGDAYS][$WORKINGDAYS()]]= #FuncSUMDAYS ---+++ SUMDAYS( list ) -- sum the days in a list or range of cells * The total number of days in a list or range of cells containing numbers of hours, days or weeks. The default unit is days; units are indicated by a ==h==, ==hours==, ==d==, ==days==, ==w==, ==weeks== suffix. One week is assumed to have 5 working days, one day 8 hours * Syntax: ==$SUMDAYS( list )== * Example: ==%<nop>CALC{$SUMDAYS(2w, 1, 2d, 4h)}%== returns ==13.5==, the evaluation of =(2*5 + 1 + 2 + 4/8)= * Related: =[[#FuncSUM][$SUM()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncFORMATTIME][$FORMATTIME()]]= #FuncSUMPRODUCT ---+++ SUMPRODUCT( list, list ) -- scalar product on ranges of cells * Syntax: ==$SUMPRODUCT( list, list, _list..._ )== * Example: ==%<nop>CALC{$SUMPRODUCT(R2:C1..R4:C1, R2:C5..R4:C5)}%== evaluates and returns the result of ==($T(R2:C1) * $T(R2:C5) + $T(R3:C1) * $T(R3:C5) + $T(R4:C1) * $T(R4:C5))== * Related: =[[#FuncLIST][$LIST()]]=, =[[#FuncPRODUCT][$PRODUCT()]]=, =[[#FuncSUM][$SUM()]]= #FuncT ---+++ T( address ) -- content of a cell * Syntax: ==$T( address )== * Example: ==%<nop>CALC{$T(R1:C5)}%== returns the text in cell ==R1:C5== * Related: =[[#FuncCOLUMN][$COLUMN()]]=, =[[#FuncROW][$ROW()]]= #FuncTIME ---+++ TIME( text ) -- convert a date string into a serialized date number * Serialized date is seconds since the Epoch, e.g. midnight, 01 Jan 1970. Current time is taken if the date string is empty. Supported date formats: =31 Dec 2009=; =31 Dec 2009 GMT=; =31 Dec 09=; =31-Dec-2009=; =31/Dec/2009=; =31 Dec 2003 - 23:59=; =31 Dec 2003 - 23:59:59=; =2009/12/31=; =2009-12-31=; =2009/12/31=; =2009/12/31 23:59=; =2009/12/31 - 23:59=; =2009-12-31-23-59=; =2009/12/31 - 23:59:59=; =2009.12.31.23.59.59=. DOY (Day of Year) formats: =DOY2003.365=, =DOY2003.365.23.59=, =DOY2003.365.23.59.59=. Date is assumed to be server time; add =GMT= to indicate Greenwich time zone * Syntax: ==$TIME( _text_ )== * Example: ==%<nop>CALC{$TIME(2003/10/14 GMT)}%== returns ==1066089600== * Related: =[[#FuncFORMATGMTIME][$FORMATGMTIME()]]=, =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATTIMEDIFF][$FORMATTIMEDIFF()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]=, =[[#FuncTODAY][$TODAY()]]=, =[[#FuncWORKINGDAYS][$WORKINGDAYS()]]= #FuncTIMEADD ---+++ TIMEADD( serial, value, unit ) -- add a value to a serialized date * The =unit= is seconds if not specified; unit can be =second=, =minute=, =hour=, =day=, =week=, =month=, =year=. Note: An approximation is used for month and year calculations * Syntax: ==$TIMEADD( serial, value, _unit_ )== * Example: ==%<nop>CALC{$TIMEADD($TIME(), 2, week)}%== returns the serialized date two weeks from now * Related: =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATGMTIME][$FORMATGMTIME()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]=, =[[#FuncTODAY][$TODAY()]]= #FuncTIMEDIFF ---+++ TIMEDIFF( serial_1, serial_2, unit ) -- time difference between two serialized dates * The =unit= is seconds if not specified; unit can be specified as in =$TIMEADD()=. * Notes: An approximation is used for month and year calculations. Use =$ROUND()= to round =day= unit to account for daylight savings time change. Use =$FORMAT()=, =$FORMATTIMEDIFF()= or =$INT()= to format real numbers * Syntax: ==$TIMEDIFF( serial_1, serial_2, _unit_ )== * Example: ==%<nop>CALC{$TIMEDIFF($TIME(), $EVAL($TIME()+90), minute)}%== returns ==1.5== * Example: ==%<nop>CALC{$ROUND($TIMEDIFF($TIME(2012-12-06),$TIME(2012-12-13), day))}%== returns ==7== (or ==6.95833333333333== without the =$ROUND()=) * Related: =[[#FuncFORMAT][$FORMAT()]]=, =[[#FuncFORMATGMTIME][$FORMATGMTIME()]]=, =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATTIMEDIFF][$FORMATTIMEDIFF()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTODAY][$TODAY()]]=, =[[#FuncWORKINGDAYS][$WORKINGDAYS()]]= #FuncTODAY ---+++ TODAY( ) -- serialized date of today at midnight GMT * In contrast, the related =$TIME()= returns the serialized date of today at the current time, e.g. it includes the number of seconds since midnight GMT * Syntax: ==$TODAY( )== * Example: ==%<nop>CALC{$TODAY()}%== returns the number of seconds since Epoch * Related: =[[#FuncFORMATTIME][$FORMATTIME()]]=, =[[#FuncFORMATGMTIME][$FORMATGMTIME()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEADD][$TIMEADD()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]= #FuncTRANSLATE ---+++ TRANSLATE( text, from, to ) -- translate text from one set of characters to another * The translation is done =from= a set =to= a set, one character by one. The =text= may contain commas; all three parameters are required. In the =from= and =to= parameters you can add token =$comma= for comma, =$sp= for space, and =$n= for newline * Syntax: ==$TRANSLATE( text, from, to )== * Example: ==%<nop>CALC{$TRANSLATE(boom,bm,cl)}%== returns ==cool== * Example: ==%<nop>CALC{$TRANSLATE(one, two,$comma,;)}%== returns ==one; two== * Related: =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncHEXDECODE][$HEXDECODE()]]=, =[[#FuncHEXENCODE][$HEXENCODE()]]=, =[[#FuncINSERTSTRING][$INSERTSTRING()]]=, =[[#FuncLEFTSTRING][$LEFTSTRING()]]=, =[[#FuncREPLACE][$REPLACE()]]=, =[[#FuncRIGHTSTRING][$RIGHTSTRING()]]=, =[[#FuncSUBSTRING][$SUBSTRING()]]=, =[[#FuncSUBSTITUTE][$SUBSTITUTE()]]= #FuncTRIM ---+++ TRIM( text ) -- trim spaces from text * Removes all spaces from text except for single spaces between words * Syntax: ==$TRIM( text )== * Example: ==%<nop>CALC{$TRIM( eat spaces )}%== returns ==eat spaces== * Related: =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncFILTER][$FILTER()]]=, =[[#FuncISWIKIWORD][$ISWIKIWORD()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncPROPERSPACE][$PROPERSPACE()]]= #FuncUPPER ---+++ UPPER( text ) -- upper case string of a text * Syntax: ==$UPPER( text )== * Example: ==%<nop>CALC{$UPPER($T(R1:C5))}%== returns the upper case string of the text in cell ==R1:C5== * Related: =[[#FuncISLOWER][$ISLOWER()]]=, =[[#FuncISUPPER][$ISUPPER()]]=, =[[#FuncLOWER][$LOWER()]]=, =[[#FuncPROPER][$PROPER()]]=, =[[#FuncPROPERSPACE][$PROPERSPACE()]]=, =[[#FuncTRIM][$TRIM()]]= #FuncVALUE ---+++ VALUE( text ) -- convert text to number * Extracts a number from ==text==. Returns ==0== if not found * Syntax: ==$VALUE( text )== * Example: ==%<nop>CALC{$VALUE(US$1,200)}%== returns ==1200== * Example: ==%<nop>CALC{$VALUE(<nop>PrjNotebook1234)}%== returns ==1234== * Example: ==%<nop>CALC{$VALUE(Total: -12.5)}%== returns ==-12.5== * Related: =[[#FuncCEILING][$CEILING()]]=, =[[#FuncEVAL][$EVAL()]]=, =[[#FuncFLOOR][$FLOOR()]]=, =[[#FuncINT][$INT()]]=, =[[#FuncISDIGIT][$ISDIGIT()]]=, =[[#FuncROUND][$ROUND()]]= #FuncVAR ---+++ VAR( list ) -- variance based on a sample * This assumes that the =list= is a sample of the population. Use =[[#FuncVARP][$VARP()]]= if your data represents the entire population. * Syntax: ==$VARP( list )== * Example: ==%<nop>CALC{$VAR(R2:C5..R$ROW(-1):C5)}%== returns the variance of column 5, excluding the title row * Example: ==%<nop>CALCULATE{$VAR(3.50, 5.00, 7.23, 2.99)}%== returns ==3.6178== * Related: =[[#FuncAVERAGE][$AVERAGE()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVARP][$VARP()]]= #FuncVARP ---+++ VARP( list ) -- variance based on the entire population * This assumes that the =list= is the entire population. Use =[[#FuncVAR][$VAR()]]= if your data represents a sample of the population. * Syntax: ==$VARP( list )== * Example: ==%<nop>CALC{$VARP(R2:C5..R$ROW(-1):C5)}%== returns the variance of column 5, excluding the title row * Example: ==%<nop>CALCULATE{$VARP(3.50, 5.00, 7.23, 2.99)}%== returns ==2.71335== * Related: =[[#FuncAVERAGE][$AVERAGE()]]=, =[[#FuncLIST][$LIST()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMEDIAN][$MEDIAN()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncMAX][$MAX()]]=, =[[#FuncMIN][$MIN()]]=, =[[#FuncPERCENTILE][$PERCENTILE()]]=, =[[#FuncSTDEV][$STDEV()]]=, =[[#FuncSTDEVP][$STDEVP()]]=, =[[#FuncVAR][$VAR()]]= #FuncWHILE ---+++ WHILE( condition, do ) -- do something while a condition is true * The =condition= can be a number (where ==0== means condition not met), or two numbers with a comparison operator ==<== (less than), ==<=<nop>== (less than or equal), ==<nop>==<nop>== (equal), ==<nop>!=<nop>== (not equal), ==>=<nop>== (greater than or equal), ==>== (greater than). * The =condition= and =do= are evaluated in each cycle; a =$counter= starting at 1 can be used in =condition= and =do=. * Syntax: ==$WHILE( condition, do something )== * Example: ==%<nop>CALC{$WHILE($counter<=10, $counter )}%== returns ==1 2 3 4 5 6 7 8 9 10== * Example: ==%<nop>CALC{$SET(i, 0) $WHILE($GET(i)<10, $SETM(i, +1) $EVAL($GET(i) * $GET(i)), )}%== returns ==1, 4, 9, 16, 25, 36, 49, 64, 81, 100,== * Related: =[[#FuncAND][$AND()]]=, =[[#FuncEMPTY][$EMPTY()]]=, =[[#FuncEXACT][$EXACT()]]=, =[[#FuncGET][$GET()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncLISTIF][$LISTIF()]]=, =[[#FuncNOT][$NOT()]]=, =[[#FuncOR][$OR()]]=, =[[#FuncSET][$SET()]]=, =[[#FuncSETM][$SETM()]]=, =[[#FuncREPEAT][$REPEAT()]]= #FuncWORKINGDAYS ---+++ WORKINGDAYS( serial_1, serial_2 ) -- working days between two serialized dates * Working days are Monday through Friday (sorry, Israel!) * Syntax: ==$WORKINGDAYS( serial_1, serial_2 )== * Example: ==%<nop>CALC{$WORKINGDAYS($TIME(2012-07-15 GMT), $TIME(2012-08-03 GMT))}%== returns ==14== * Related: =[[#FuncSUMDAYS][$SUMDAYS()]]=, =[[#FuncTIME][$TIME()]]=, =[[#FuncTIMEDIFF][$TIMEDIFF()]]= #FuncXOR ---+++ XOR( list ) -- logical XOR of a list * Syntax: ==$XOR( list )== * Example: ==%<nop>CALC{$XOR(0, 0)}%== returns ==0== * Example: ==%<nop>CALC{$XOR(0, 1)}%== returns ==1== * Example: ==%<nop>CALC{$XOR(1, 0)}%== returns ==1== * Example: ==%<nop>CALC{$XOR(1, 1)}%== returns ==0== * Example: ==%<nop>CALC{$XOR(1, 0, 1)}%== returns ==0== * Related: =[[#FuncAND][$AND()]]=, =[[#FuncBITXOR][$BITXOR()]]=, =[[#FuncIF][$IF()]]=, =[[#FuncNOT][$NOT()]]=, =[[#FuncOR][$OR()]]=, =[[#FuncWHILE][$WHILE()]]= ---++ FAQ #CalcInFormattedSearch ---+++ Can I use CALC in a formatted search? Specifically, how can I output some conditional text in a %SYSTEMWEB%.FormattedSearch? You need to escape the CALC so that it executes once per search hit. This can be done by escaping the =%= signs of =%<nop>CALC{...}%= with =$percnt=. For example, to execute =$IF($EXACT($formfield(Tested), Yes), %<nop>ICONURL{choice-yes}%, %<nop>ICONURL{choice-no}%)= in the =format=""= parameter, write this: =%<nop>SEARCH{ .... format="| $topic | $percntCALC{$IF($EXACT($formfield(Tested), Yes), %<nop>ICONURL{choice-yes}%, %<nop>ICONURL{choice-no}%)}$percnt |" }%= ---+++ How can I easily repeat a formula in a table? To repeat the same formula in all cells of a table row define the formula once in a preferences setting and use that in the CALC. The preferences setting can be defined at the site level, web level or topic level, and may be hidden in HTML comments. Example: <verbatim> <!-- * Set MYFORMULA = $EVAL($SUBSTITUTE(...etc...)) --> | A | 1 | %CALC{%MYFORMULA%}% | | B | 2 | %CALC{%MYFORMULA%}% | | C | 3 | %CALC{%MYFORMULA%}% | </verbatim> #CalcInINCLUDE ---++ CALC in Included Topics By default, CALCs in an included topic are evaluated with delay. The SKIPINCLUDE setting tells the plugin to evaluate the CALCs once all INCLUDEs are processed. This default behavior is chosen so that it is possible to compose a bigger table from several includes and do some spreadsheet calculation over the whole table. __%X% Attention:__ You can get unexpected results if you [[%SYSTEMWEB%.VarINCLUDE][INCLUDE]] a topic that has other variables taking action on CALCs. For example, a CHART in an included topic sees unprocessed CALCs, which may result in a chart with incorrect values. To get he desired result you need to set the following preference setting in the topic that _includes_ the topic containing the CHART: * Set <nop>SPREADSHEETPLUGIN_SKIPINCLUDE = 0 This setting tells the !SpreadSheetPlugin to process the CALCs in the included page, e.g. it will not delay the evaluation of the functions. ---++ Bug Tracking Example | *Bug#:* | *Priority:* | *Subject:* | *Status:* | *Days to fix* | | Bug:1231 | Low | File Open ... | Open | 3 | | Bug:1232 | High | Memory Window ... | Fixed | 2 | | Bug:1233 | Medium | Usability issue ... | Assigned | 5 | | Bug:1234 | High | No arrange ... | Fixed | 1 | | Total: %CALC{$ROW(-2)}% \ | %CALC{$COUNTITEMS( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% | . \ | %CALC{$COUNTITEMS( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% \ | Total: %CALC{$SUM( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% | The last row is defined as: <verbatim> | Total: %CALC{$ROW(-2)}% \ | %CALC{$COUNTITEMS( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% | . \ | %CALC{$COUNTITEMS( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% \ | Total: %CALC{$SUM( R2:C$COLUMN()..R$ROW(-1):C$COLUMN() )}% | </verbatim> Above table is created manually. The table can be build dynamically with a [[%SYSTEMWEB%.FormattedSearch][formatted search]], or by a plugin that pulls data from an external source, such as a bug tracking system. ---++ Plugin Settings %TWISTY{ mode="div" showlink="Show details %ICONURL{toggleopen}% " hidelink="Hide details %ICONURL{toggleclose}% " }% Plugin settings are stored as preferences variables. To reference a plugin setting write ==%<nop><plugin>_<setting>%==, i.e. ==%<nop>SPREADSHEETPLUGIN_SHORTDESCRIPTION%== * One line description, is shown in the %SYSTEMWEB%.TextFormattingRules topic: * Set SHORTDESCRIPTION = Add spreadsheet calculation like ="$SUM( $ABOVE() )"= to TWiki tables or anywhere in topic text * Debug plugin: (See output in =data/debug.txt=) * Set DEBUG = 0 * Do not handle =%<nop>CALC{}%= variable in included topic while including topic: (default: 1) (See note [[#CalcInINCLUDE][CALC in Included Topics]]) * Set SKIPINCLUDE = 1 <noautolink> * [[%SYSTEMWEB%.WikiWord][WikiWords]] to exclude from being spaced out by the ==$PROPERSPACE(text)== function. This comma delimited list can be overloaded by a DONTSPACE preferences variable: * Set DONTSPACE = CodeWarrior, MacDonald, McIntosh, RedHat, SuSE </noautolink> %ENDTWISTY% ---++ Plugin Installation Instructions This plugin is pre-installed. TWiki administrators can upgrade the plugin as needed on the TWiki server. %TWISTY{ mode="div" showlink="Show details %ICONURL{toggleopen}% " hidelink="Hide details %ICONURL{toggleclose}% " }% * For an __automated installation__, run the [[%SCRIPTURL{configure}%][configure]] script and follow "Find More Extensions" in the in the __Extensions__ section. * Or, follow these __manual installation__ steps: * Download the ZIP file from the Plugins home (see below). * Unzip ==SpreadSheetPlugin.zip== in your twiki installation directory. Content: | *File:* | *Description:* | | ==data/TWiki/%TOPIC%.txt== | Plugin topic | | ==data/TWiki/SpreadSheetPluginTestCases.txt== | Test cases | | ==data/TWiki/VarCALC.txt== | Documentation of the CALC variable | | ==data/TWiki/VarCALCULATE.txt== | Documentation of the CALCULATE variable | | ==lib/TWiki/Plugins/%TOPIC%.pm== | Plugin Perl module | | ==lib/TWiki/Plugins/%TOPIC%/Calc.pm== | Plugin core module | * Set the ownership of the extracted directories and files to the webserver user. * Plugin __configuration and testing__: * Run the [[%SCRIPTURL{configure}%][configure]] script and enable the plugin in the __Plugins__ section. * Test if the installation was successful: See example above and %SYSTEMWEB%.SpreadSheetPluginTestCases. %ENDTWISTY% ---++ Plugin Info %TABLE{ tablewidth="100%" columnwidths="170," }% | Plugin Author: | TWiki:Main.PeterThoeny | | Copyright: | © 2001-2013 Peter Thoeny, [[http://twiki.org/][TWiki.org]]<br /> © 2008-2013 TWiki:TWiki.TWikiContributor | | License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) | | Plugin Version: | 2013-01-09 | %TWISTY{ mode="div" showlink="Show Change History %ICONURL{toggleopen}%" hidelink="Hide Change History %ICONURL{toggleclose}% " }% %TABLE{ tablewidth="100%" columnwidths="170," }% | 2013-01-09: | TWikibug:Item7091: Use TWISTY in variable section, installation instructions and change history | | 2012-11-11: | TWikibug:Item7020: Categorize TWiki Variables CALC and CALCULATE | | 2012-11-05: | TWikibug:Item7023: Added $STDEV(), $STDEVP(), $VAR(), $VARP() | | 2012-11-03: | TWikibug:Item7018: Added SpreadSheetPluginTestCases topic; refactor plugin to use function hash for better performance | | 2012-10-06: | TWikibug:Item6960: Fixed form action of interactive formula evaluation feature -- TWiki:Main.HideyoImazu | | 2012-06-30: | TWikibug:Item6898: Added $FILTER() | | 2012-06-29: | TWikibug:Item6897: Added $ISDIGIT(), $ISLOWER(), $ISUPPER(), $ISWIKIWORD() | | 2012-04-04: | TWikibug:Item6866: Added CALCULATE variable using register tag handler to support proper inside-out, left-to-right eval order like ordinary TWiki variables | | 2012-01-13: | TWikibug:Item6804: Added $FLOOR() and $CEILING() | | 2011-09-07: | TWikibug:Item6803: Fix for EVAL function bug with zeroes after decimal point | | 2011-07-09: | TWikibug:Item6725: Change global package variables from "use vars" to "our" | | 2011-04-25: | TWikibug:Item6690: Added $BITXOR(), $HEXDECODE(), $HEXENCODE(), $XOR() | | 2011-04-08: | TWikibug:Item6681: Added $WHILE() | | 2011-04-06: | TWikibug:Item6679: Fixed small issue with $LISTRAND(), where last item only got 50% of fair share to get picked | | 2011-03-25: | TWikibug:Item6669: Added $LISTNONEMPTY() | | 2011-03-24: | TWikibug:Item6668: Fixed $LIST() not flattening a list in a cell<br /> TWikibug:Item6667: Fixed $RIGHT() having wrong result due to incorrect start cell | | 2011-03-22: | TWikibug:Item6666: Added $SPLIT(); renamed $nop separator token of $LISTJOIN() to $empty (keeping $nop as undocumented feature) | | 2010-08-27: | TWikibug:Item6526: Added ISO 8601 week number to $FORMATTIME(), contributed by TWiki:Main.PeterPayne | | 2010-08-04: | TWikibug:Item6537: Fixed for $EVAL(2+08) returning "illegal octal digit" error instead of 10 | | 2010-07-17: | TWikibug:Item6525: Added $n token to TRANSLATE for newline | | 2010-05-27: | TWikibug:Item6506: Document delayed evaluation of CALC in included topics | | 2010-05-26: | TWikibug:Item6504: Added empty ($nop) separator to $LISTJOIN() | | 2010-06-25: | TWikibug:Item6493: Fixed $PRODUCT(0,4) returning 4 instead of 0<br /> TWikibug:Item5163: Fix for plugin causing table to misrender an empty "||" row | | 2010-05-22: | TWikibug:Item6472: Added support for DOY in $TIME(), contributed by TWiki:Main/EmanueleCupido | | 2010-05-15: | TWikibug:Item6433: Doc improvements; replacing TWIKIWEB with SYSTEMWEB | | 2010-02-27: | Doc improvements | | 2009-11-22: | Enhanced $NOP(): Added $quot replacement for quote character, changed $per replacement with $percnt, contributed by TWiki:Main/HorstEsser | | 09 May 2009: | Fixed bug in $WORKINGDAYS(): Incorrect number of days if daylight savings time change happens between start date and end date | | 26 Mar 2009: | Added $INSERTSTRING() | | 25 Mar 2009: | Added $EMPTY(), $LEFTSTRING(), $RIGHTSTRING(), $SUBSTRING() | | 24 Mar 2009: | Fixed bug in $REPLACE() if to-be-replaced string is "0"; fixed bug in $SUBSTITUTE() if replace string is empty; improved docs | | 13 Oct 2007: | Added $FORMATTIMEDIFF() | | 09 Sep 2007: | Enhanced documentation for $EVAL() and $INT() | | 02 Jun 2007: | Added %SYSTEMWEB%.VarCALC to have =%<nop>CALC{}%= listed in %SYSTEMWEB%.TWikiVariables | | 14 Apr 2007: | Fixing bug in $EXISTS() that required full =web.topic= instead of just =topic= | | 11 Mar 2007: | Fixing bug in $VALUE() and $INT(), introduced by version 09 Mar 2007 | | 09 Mar 2007: | Added $EXP(), $LN(), $LOG(), $PI(), $SQRT(); fixed $ROUND() bug, contributed by TWiki:Main/SergejZnamenskij | | 23 Jan 2007: | Enhanced documentation | | 18 Dec 2006: | Added $LISTRAND(), $LISTSHUFFLE(), $LISTTRUNCATE(); fixed spurious newline at end of topic, contributed by TWiki:Main/MichaelDaum | | 10 Oct 2006: | Enhanced documentation | | 13 May 2006: | Added $SETIFEMPTY(); fixes in documentation | | 17 Jun 2005: | Added $NOEXEC(), $EXEC() | | 25 Mar 2005: | Fixed evaluation bug when using <nop>SpeedyCGI accelerator; code refactor to load module only when needed, contributed by TWiki:Main/CrawfordCurrie | | 24 Oct 2004: | Added $EXISTS(), contributed by TWiki:Main/RodrigoChandia; added $PERCENTILE() | | 18 Oct 2004: | Added $LISTJOIN() | | 26 Sep 2004: | Added $FORMAT(KB), $FORMAT(MB), contributed by TWiki:Main/ArthurClemens; added $FORMAT(KBMB), $EVEN(), $ODD() | | 17 Jul 2004: | Added $WORKINGDAYS(), contributed by TWiki:Main/CrawfordCurrie | | 24 May 2004: | Refactored documentation (no code changes) | | 03 Apr 2004: | Added $ABS(), $LISTIF(); fixed $VALUE() to remove leading zeros; changed $FIND() and $SEARCH() to return 0 instead of empty string if no match | | 21 Mar 2004: | Added $LISTITEM(); fixed call to unofficial function | | 16 Mar 2004: | Added $LISTMAP(), $LISTREVERSE(), $LISTSIZE(), $LISTSORT(), $LISTUNIQUE(), $SETM(); retired $COUNTUNIQUE() in favor of $COUNTITEMS($LISTUNIQUE()); fixed evaluation order issue of $IF(); fixed missing eval error messages suppressed since version 06 Mar 2004; redirect stderr messages to warning | | 08 Mar 2004: | Added $LIST() | | 06 Mar 2004: | Added $AND(), $MOD(), $NOT(), $OR(), $PRODUCT(), $PROPER(), $PROPERSPACE(), $RAND(), $REPEAT(), $SIGN(), $VALUE(); added digits parameter to $ROUND(); renamed $MULT() to $PRODUCT(); $MULT() is deprecated and undocumented | | 27 Feb 2004: | Added $COUNTUNIQUE() | | 24 Oct 2003: | Added $SET(), $GET(), $MEDIAN(); added $SUMPRODUCT(), inspired by TWiki:Main/RobertWithrow; added $SUMDAYS(), contributed by TWiki:Main/SvenDowideit | | 21 Oct 2003: | Added support for lists =(1, 2, 3)= and lists of table ranges =(R1:C1..R1:C5, R3:C1..R3:C5)= for all functions that accept a table range; added $TIMEADD(); in $TIMEDIFF() added week unit; in $FORMATTIME() changed $weekday to $wd and added $wday and $weekday | | 14 Oct 2003: | Added $TIME(), $TODAY(), $FORMATTIME(), $FORMATGMTIME(), $TIMEDIFF() | | 13 Oct 2003: | Added $MULT(), contributed by TWiki:Main/GerritJanBaarda | | 30 Jul 2003: | Added $TRANSLATE() | | 19 Jul 2003: | Added $FIND(), $NOP(), $REPLACE(), $SEARCH(), $SUBSTITUTE(), contributed by TWiki:Main/PaulineCheung | | 19 Apr 2003: | Added $COUNTSTR(), $EXACT(), $IF(), $ROUND(), $TRIM(); added $FORMAT(), contributed by TWiki:Main/JimStraus; support =%= modulus operator in $EVAL(), $INT(), and $ROUND(); fixed bug in $DEF() | | 07 Jun 2002: | Added $DEF(), contributed by TWiki:Main/MartinFuzzey; allow values with HTML formatting like =<u>102</u>=, suggested by TWiki:Main/GladeDiviney; added SKIPINCLUDE setting | | 12 Mar 2002: | Support for multiple functions per nesting level | | 15 Jan 2002: | Added $CHAR(), $CODE() and $LENGTH() | | 12 Nov 2001: | Added $RIGHT() | | 12 Aug 2001: | Fixed bug of disappearing multi-column cells | | 19 Jul 2001: | Fixed incorrect $SUM() calculation of cell with value =0= | | 14 Jul 2001: | Changed to plug & play | | 01 Jun 2001: | Fixed insecure dependencies for $MIN() and $MAX() | | 16 Apr 2001: | Fixed div by 0 bug in $AVERAGE() | | 17 Mar 2001: | Initial version with $ABOVE(), $AVERAGE(), $COLUMN(), $COUNTITEMS(), $EVAL(), $INT(), $LEFT(), $LOWER(), $MAX(), $MIN(), $ROW(), $SUM(), $T(), $UPPER() | %ENDTWISTY% %TABLE{ tablewidth="100%" columnwidths="170," }% | CPAN Dependencies: | none | | TWiki:Plugins/Benchmark: | %SYSTEMWEB%.GoodStyle 99%, %SYSTEMWEB%.FormattedSearch 99%, %TOPIC% 95% | | Other Dependencies: | none | | Perl Version: | 5.000 and up | | Plugin Home: | http://TWiki.org/cgi-bin/view/Plugins/%TOPIC% | | Feedback: | http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%Dev | | Appraisal: | http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%Appraisal | __Related Topics:__ %SYSTEMWEB%.SpreadSheetPluginTestCases, %SYSTEMWEB%.TWikiPreferences, %SYSTEMWEB%.TWikiPlugins, %SYSTEMWEB%.VarCALC, %SYSTEMWEB%.VarCALCULATE, %SYSTEMWEB%.VarIF
Edit
|
Attach
|
Watch
|
P
rint version
|
H
istory
:
r29
<
r28
<
r27
<
r26
<
r25
|
B
acklinks
|
V
iew topic
|
Raw edit
|
More topic actions...
Topic revision: r27 - 2013-01-10
-
TWikiContributor
Home
Site map
Main web
MedicaidBilling web
Sandbox web
TWiki web
TWiki Web
User registration
Users
Groups
Index
Search
Changes
Notifications
RSS Feed
Statistics
Preferences
View
Raw View
Print version
Find backlinks
History
More topic actions
Edit
Raw edit
Attach file or image
Edit topic preference settings
Set new parent
More topic actions
User Reference
ATasteOfTWiki
TextFormattingRules
TWikiVariables
FormattedSearch
QuerySearch
TWikiDocGraphics
TWikiSkinBrowser
InstalledPlugins
Admin Maintenance
Reference Manual
InterWikis
ManagingUsers
ManagingWebs
TWikiSiteTools
TWikiPreferences
WebPreferences
Categories
Admin Documentation
Admin Tools
Developer Doc
User Documentation
User Tools
Account
Log In
Edit
Attach
Copyright © 1999-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback
Note:
Please contribute updates to this topic on TWiki.org at
TWiki:TWiki.SpreadSheetPlugin
.