Dan Posted January 28, 2005 Report Share Posted January 28, 2005 I was just wondering what is the formula for words per minute and how to put it in a spreadsheet??I my spreadsheet is like this so far:A1= # of Words B1= XA2= WPM B2= XA3= Time B3= Formula???So B1, and B2 is the # of words and WPM.....If anyone could tell me what to put in B3, that would be great!dk Quote Link to post Share on other sites
jcl Posted January 29, 2005 Report Share Posted January 29, 2005 I was just wondering what is the formula for words per minute and how to put it in a spreadsheet??The formula is, uh, words / minutes. How you handle the spreadsheet with depend on what software you're using and how you want to format the sheet. Here's an example I made in OpenOffice:The equation for cell B3 is in the equation bar. Quote Link to post Share on other sites
Dan Posted January 29, 2005 Author Report Share Posted January 29, 2005 Ah..Cool! Is there any way to make it accurate to around the second? Quote Link to post Share on other sites
crrj Posted February 8, 2005 Report Share Posted February 8, 2005 To get seconds you'd need to multiply the minutes by 60 to get seconds, then use modulus 60 to get the number of seconds.Something like:seconds = (time * 60) % 60minutes = int(time / 60) providing int rounds down, otherwise you may need to do a floor(time) to eliminate the decimalthen minutes:seconds would be your output.Hope that helps. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.