Hello guys,
I remember I was once trying to find a way to re-calculate every cell's data too.. without having to select each individual cell, hit F2, and then press Enter.
I will give an example that might help clarify when you would need to do this:
Sheet1
<TABLE style="PADDING-RIGHT: 2pt; PADDING-LEFT: 2pt; FONT-SIZE: 10pt; FONT-FAMILY: Arial,Arial; BACKGROUND-COLOR: #ffffff" cellSpacing=0 cellPadding=0 border=1><COLGROUP><COL style="FONT-WEIGHT: bold; WIDTH: 30px"><COL style="WIDTH: 64px"><COL style="WIDTH: 64px"><COL style="WIDTH: 64px"><COL style="WIDTH: 64px"><COL style="WIDTH: 64px"><COL style="WIDTH: 64px"></COLGROUP><TBODY><TR style="FONT-WEIGHT: bold; FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center"><TD> </TD><TD>A</TD><TD>B</TD><TD>C</TD><TD>D</TD><TD>E</TD><TD>F</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">1</TD><TD>46+67</TD><TD>=</TD><TD> </TD><TD>=46+67</TD><TD> </TD><TD>=46+67</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">2</TD><TD>46+68</TD><TD>=</TD><TD> </TD><TD>=46+68</TD><TD> </TD><TD>=46+68</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">3</TD><TD>46+69</TD><TD>=</TD><TD> </TD><TD>=46+69</TD><TD> </TD><TD>=46+69</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">4</TD><TD>46+70</TD><TD>=</TD><TD> </TD><TD>=46+70</TD><TD> </TD><TD>=46+70</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">5</TD><TD>46+71</TD><TD>=</TD><TD> </TD><TD>=46+71</TD><TD> </TD><TD>=46+71</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">6</TD><TD>46+72</TD><TD>=</TD><TD> </TD><TD>=46+72</TD><TD> </TD><TD>=46+72</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">7</TD><TD>46+73</TD><TD>=</TD><TD> </TD><TD>=46+73</TD><TD> </TD><TD>=46+73</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">8</TD><TD>46+74</TD><TD>=</TD><TD> </TD><TD>=46+74</TD><TD> </TD><TD>=46+74</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">9</TD><TD>46+75</TD><TD>=</TD><TD> </TD><TD>=46+75</TD><TD> </TD><TD>=46+75</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">10</TD><TD>46+76</TD><TD>=</TD><TD> </TD><TD>=46+76</TD><TD> </TD><TD>=46+76</TD></TR><TR style="HEIGHT: 17px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">11</TD><TD>46+77</TD><TD>=</TD><TD> </TD><TD>=46+77</TD><TD> </TD><TD>=46+77</TD></TR></TBODY></TABLE>
<TABLE style="FONT-SIZE: 10pt; BORDER-LEFT-COLOR: #00ff00; BORDER-BOTTOM-COLOR: #00ff00; COLOR: #000000; BORDER-TOP-STYLE: groove; BORDER-TOP-COLOR: #00ff00; FONT-FAMILY: Arial; BORDER-RIGHT-STYLE: groove; BORDER-LEFT-STYLE: groove; BACKGROUND-COLOR: #fffcf9; BORDER-RIGHT-COLOR: #00ff00; BORDER-BOTTOM-STYLE: groove"><TBODY><TR><TD>
Spreadsheet Formulas</TD></TR><TR><TD><TABLE style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" cellSpacing=0 cellPadding=2 border=1><TBODY><TR style="FONT-SIZE: 10pt; BACKGROUND-COLOR: #cacaca"><TD>Cell</TD><TD>Formula</TD></TR><TR><TD>D1</TD><TD>=CONCATENATE(B1,A1)</TD></TR><TR><TD>D2</TD><TD>=CONCATENATE(B2,A2)</TD></TR><TR><TD>D3</TD><TD>=CONCATENATE(B3,A3)</TD></TR><TR><TD>D4</TD><TD>=CONCATENATE(B4,A4)</TD></TR><TR><TD>D5</TD><TD>=CONCATENATE(B5,A5)</TD></TR><TR><TD>D6</TD><TD>=CONCATENATE(B6,A6)</TD></TR><TR><TD>D7</TD><TD>=CONCATENATE(B7,A7)</TD></TR><TR><TD>D8</TD><TD>=CONCATENATE(B8,A8)</TD></TR><TR><TD>D9</TD><TD>=CONCATENATE(B9,A9)</TD></TR><TR><TD>D10</TD><TD>=CONCATENATE(B10,A10)</TD></TR><TR><TD>D11</TD><TD>=CONCATENATE(B11,A11)</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
Excel tables to the web >> http://www.excel-jeanie-html.de/index.php?f=1" target="_blank"> Excel Jeanie HTML 4
Note: Column F was simply a .. Copy -> Paste Special -> Values .. of column D.
This is an example given with a very limited set of data; imagine there being 1000+ lines of code. There has be a better solution than the manual method.
~ Busypee