diff -r orig/data/TWiki/SpreadSheetPlugin.txt new/data/TWiki/SpreadSheetPlugin.txt 54a55 > | =="$MULT(list)" | The product of a list or range of cells. Example: to calculate the product of the cells to %BR% the left of the current one use ==%nopCALC{"$MULT($LEFT())"%== | diff -r orig/lib/TWiki/Plugins/SpreadSheetPlugin.pm new/lib/TWiki/Plugins/SpreadSheetPlugin.pm 335a336,343 > } elsif( $theFunc eq "MULT" ) { > $result = 0; > my @arr = getTableRangeAsFloat( $theAttr ); > $result = 1; > foreach $i ( @arr ) { > $result *= $i if defined $i; > } >