Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > how to get MS EXCEL formulas in Java Script

Reply
Thread Tools

how to get MS EXCEL formulas in Java Script

 
 
Yousaf
Guest
Posts: n/a
 
      04-09-2007
How can i get MS Excel like formulas in Java Script , so that my
webpage controls get updated when their value changes based on the
formula specified.

 
Reply With Quote
 
 
 
 
Bart Van der Donck
Guest
Posts: n/a
 
      04-10-2007
Yousaf wrote:

> How can i get MS Excel like formulas in Java Script
> so that my webpage controls get updated when their
> value changes based on the formula specified.


You could use Excel's formula notation in the base code and the
calculations auto-update:

<object classid="CLSID:0002E510-0000-0000-C000-000000000046"
id="obj">
<param name="HTMLData" value="&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;26&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;=(A1+B1)/C1&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;">
</object>

To update a formula, here e.g. from '(A1+B1)/C1' to 'A1-B1':

<script type="text/javascript">
obj.HTMLData =
'<table><tr><td>26</td><td>4</td><td>6</td><td>=A1-B1</td></tr></
table>'
</script>

Hope this helps,

--
Bart

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Writing formulas to excel spreadsheet Will James Ruby 22 05-26-2011 05:46 PM
Writing formulas to excel spreadsheet ampclj9@hotmail.com James Ruby 0 05-19-2011 04:16 PM
[ANN] LXL (Like Excel) 0.1.0 - A mini-language that mimics Microsoft Excel formulas. Kevin Howe Ruby 6 02-06-2005 10:05 PM
Save excel including embedded Formulas, Comments etc. qazmlp Perl Misc 2 11-17-2004 05:46 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57