RE: Witango-Talk: Sum of Square Root

2010-08-02 Thread Robert Shubert
Ping? From: WebDude [mailto:webd...@cipromo.com] Sent: Thursday, July 22, 2010 10:49 AM To: witango-talk@witango.com Subject: RE: Witango-Talk: Sum of Square Root Excellent... thank you... _ From: Paul Wilson [mailto:pwilson@gmail.com] Sent: Tuesday, July 20, 2010 7:56 AM

RE: Witango-Talk: Sum of Square Root

2010-08-02 Thread WebDude
pong _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Monday, August 02, 2010 12:02 PM To: Witango-Talk@witango.com Subject: RE: Witango-Talk: Sum of Square Root Ping? From: WebDude [mailto:webd...@cipromo.com] Sent: Thursday, July 22, 2010 10:49 AM To: witango-talk

Re: Witango-Talk: Sum of Square Root

2010-08-02 Thread Kaustav Acharya
, July 22, 2010 10:49 AM To: witango-talk@witango.com Subject: RE: Witango-Talk: Sum of Square Root Excellent... thank you... From: Paul Wilson [mailto:pwilson@gmail.com] Sent: Tuesday, July 20, 2010 7:56 AM To: witango-talk@witango.com Subject: Re: Witango-Talk: Sum of Square Root

RE: Witango-Talk: Sum of Square Root

2010-07-22 Thread WebDude
Excellent... thank you... _ From: Paul Wilson [mailto:pwilson@gmail.com] Sent: Tuesday, July 20, 2010 7:56 AM To: witango-talk@witango.com Subject: Re: Witango-Talk: Sum of Square Root Excuse me, I meant the sum of the squares I believe it is the sum of the squares

Witango-Talk: Sum of Square Root

2010-07-20 Thread WebDude
I was given an excel file that needs to be converted to a web page. I am not a Math guru and was wondering if someone could help me out. The form has some fields with a formula that looks like this (cell e is the result)... =SQRT(SUMSQ(b1-b2,c1-c2,d1-d2)) --- This is the formula for cell e

RE: Witango-Talk: Sum of Square Root

2010-07-20 Thread Rick Sanders
From: WebDude [mailto:webd...@cipromo.com] Sent: Tuesday, July 20, 2010 9:32 AM To: witango-talk@witango.com Subject: Witango-Talk: Sum of Square Root I was given an excel file that needs to be converted to a web page. I am not a Math guru and was wondering if someone could help me out

Re: Witango-Talk: Sum of Square Root

2010-07-20 Thread Paul Wilson
I believe it is the sum of the square roots. For example SUMSQ(2,3,4) = 29 (2*2) + (3*3) + (4*4) = 4 + 9 + 16 = 29 It may be a simple as breaking up Excel's fancy SUMSQ into a formula. sqrt( ((b1-b2)*(b1-b2)) + ((c1-c2)*(c1-c2)) + ((d1-d2)*(d1-d2)) ) = e On Tue, Jul 20, 2010 at 8:31 AM,

Re: Witango-Talk: Sum of Square Root

2010-07-20 Thread Paul Wilson
Excuse me, I meant the sum of the squares I believe it is the sum of the squares. For example SUMSQ(2,3,4) = 29 (2*2) + (3*3) + (4*4) = 4 + 9 + 16 = 29 It may be a simple as breaking up Excel's fancy SUMSQ into a formula. sqrt( ((b1-b2)*(b1-b2)) + ((c1-c2)*(c1-c2)) + ((d1-d2)*(d1-d2)) ) = e