GolfHos

General => The Cantina => Topic started by: stroh on January 20, 2008, 08:47:27 AM



Title: Decimal Chart?
Post by: stroh on January 20, 2008, 08:47:27 AM
I need a decimal chart for Maddie's homework.  Anyone know of one online, or an easy(ier) way to make one? Without having to type it all, or write it long hand.
I tried, and Excel will count up for you, but it drops the zeros when not needed, and doesn't align the decimal points.  Makes it tough (for her) to read.

Need something like:
000.000
000.001
000.002
000.003
   ~
001.231
001.232

etc.

Muchos Garcias!  :)


Title: Re: Decimal Chart?
Post by: Aske on January 20, 2008, 09:03:02 AM
Excel


1. Create Fill Series   (enter 0.000, 0.001, 0.002, drag down to end)
2. Highlight all cells
3. Right Click and choose Format Cells
4. Leftmost Tab , choose 'Number'
5. Enter the # of decimal places to always retain in view ( in your case,  3 would force 0.010 to show instead of 0.01)
6. Paypal aske  lots of $


Title: Re: Decimal Chart?
Post by: Fuzzy on January 20, 2008, 09:08:52 AM
Excel


1. Create Fill Series   (enter 0.000, 0.001, 0.002, drag down to end)
2. Highlight all cells
3. Right Click and choose Format Cells
4. Leftmost Tab , choose 'Number'
5. Enter the # of decimal places to always retain in view ( in your case,  3 would force 0.010 to show instead of 0.01)
6. Paypal aske  lots of $


If you get lots of $ for this you're in the wrong line of work.  ;) ;D




Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 09:11:32 AM
Excel


1. Create Fill Series   (enter 0.000, 0.001, 0.002, drag down to end)
2. Highlight all cells
3. Right Click and choose Format Cells
4. Leftmost Tab , choose 'Number'
5. Enter the # of decimal places to always retain in view ( in your case,  3 would force 0.010 to show instead of 0.01)
6. Paypal aske  lots of $


It will let me drag down, but not down and over.  Do I have to do it one column at a time?


Title: Re: Decimal Chart?
Post by: gleek on January 20, 2008, 09:40:58 AM
What's a decimal chart? Do you mean a fraction-decimal conversion chart? Or is it just a single list of numbers from .001 to whatever?


Title: Re: Decimal Chart?
Post by: gleek on January 20, 2008, 09:53:06 AM
BTW, if you figure out how to fill in the cells, the correct format should be "0000.000" (without quotes) under "Custom"--not "Number". You can PayPal me, and I'll see to it that Aske gets his share. ;D


Title: Re: Decimal Chart?
Post by: Seamus on January 20, 2008, 09:53:57 AM
Quote
What's a decimal chart?
Everything you need is right in here.
(http://i97.photobucket.com/albums/l209/gvandel454/Fun%20Stuff/peechee.jpg)


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 10:05:05 AM
What's a decimal chart? Do you mean a fraction-decimal conversion chart? Or is it just a single list of numbers from .001 to whatever?

The second one.  :)


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 10:12:41 AM
Excel


1. Create Fill Series   (enter 0.000, 0.001, 0.002, drag down to end)
2. Highlight all cells
3. Right Click and choose Format Cells
4. Leftmost Tab , choose 'Number'
5. Enter the # of decimal places to always retain in view ( in your case,  3 would force 0.010 to show instead of 0.01)
6. Paypal aske  lots of $


Doesn't work.


Title: Re: Decimal Chart?
Post by: spacey on January 20, 2008, 10:44:04 AM
Like this?


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 10:58:45 AM
Like this?

Can't open it.  :(  I wonder if that's the problem.  I don't have Excel?  I guess I just have "MS Works Spreadsheet" ?


Title: Re: Decimal Chart?
Post by: Seamus on January 20, 2008, 11:00:44 AM
Like this?

Can't open it.  :(  I wonder if that's the problem.  I don't have Excel?  I guess I just have "MS Works Spreadsheet" ?
Must be, I opened it and it looks exactly like what you wanted.

I don't know how you feel about Morpheus, but it's a way to download programs like Excel for free. I ended up downloading too much free pron, had to un install it. LOL.


Title: Re: Decimal Chart?
Post by: spacey on January 20, 2008, 11:03:34 AM
http://www.microsoft.com/products/works/more/worktogether.mspx


Title: Re: Decimal Chart?
Post by: gleek on January 20, 2008, 11:04:42 AM
Copy this into a blank text file on your desktop. Rename the file "Decimals.htm", and load it into your browser.

Code:
<html>
<head>
<title>Decimal Chart</title>
<script type="text/javascript">
function OnChange(txt)
{
var ihtml = "";
var div = document.getElementById("divtable")

var cnt = parseInt(txt.value);
for (i=0; i<cnt+1; i++)
{
ihtml+= '<span>' + FormatNum(i) + '</span><br/>';
}
div.innerHTML = ihtml;
}

function FormatNum(n)
{
var ip = Math.floor(n/1000);
var dp = n % 1000;
return PadZeros(ip) + '.' + PadZeros(dp);
}

function PadZeros(v)
{
var x;
if (v < 10)
{
return '00' + v.toString();
}
if (v < 100)
{
return '0' + v.toString();
}
if (v < 1000)
{
return v.toString();
}
return '';
}

</script>

</head>

<body>
<span>Number of items:</span><input type="text" id="txtnumber" value="0" onchange="OnChange(this)"></input>
<div id="divtable" style="width:100px; text-align:right; font: 6px courier"></div>

</body>
</html>


Title: Re: Decimal Chart?
Post by: gleek on January 20, 2008, 11:07:04 AM
Alternatively, you can test it out on this page:

http://www.w3schools.com/css/tryit.asp?filename=trycss_font

Copy the text posted above into the left box (overwriting the existing contents). Then click the button above the box to run it.


Title: Re: Decimal Chart?
Post by: spacey on January 20, 2008, 11:10:33 AM
How about this?


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 11:13:23 AM
Alternatively, you can test it out on this page:

http://www.w3schools.com/css/tryit.asp?filename=trycss_font

Copy the text posted above into the left box (overwriting the existing contents). Then click the button above the box to run it.

That's it.  Thank you. 

spacey, finally got your to open as well.

I was just trying to get it into more than one column.


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 11:14:01 AM
How about this?

Beautiful.  Thank you.  (Madolyn thanks you).   8)


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 11:20:51 AM
Cool.  I can copy and paste into a document for columns.

Thank yous and Karma all around.

Man!  I rule at computers!   [sm_headbang]


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 11:25:33 AM

I don't know how you feel about Morpheus,........

He's an *bunghole*.

(http://www.importadoravolta.cl/my%20pictures/neo1.jpg)


Title: Re: Decimal Chart?
Post by: Aske on January 20, 2008, 11:55:22 AM

Man!  I rule at computers!   [sm_headbang]


strohdags, you ever consider taking a few  CC  classes about computers?



Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 12:01:20 PM

Man!  I rule at computers!   [sm_headbang]


strohdags, you ever consider taking a few  CC  classes about computers?



 :sad3:   [sm_anon]  Yes.  Prob. is finding the time.  I know I should make time, but life always seems to get in the way.

*fudge* this dude!

(http://img.photobucket.com/albums/v177/tortillini/video-professor.jpg)


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 12:13:04 PM
tom terrific with 2 incompletions on the 1st drive.  same amount as ALL of last game.
 [sm_shock]


 [sm_laughatyou]


Title: Re: Decimal Chart?
Post by: Aske on January 20, 2008, 12:14:03 PM
tom terrific with 2 incompletions on the 1st drive.  same amount as ALL of last game.
 [sm_shock]


 [sm_laughatyou]

??? [sm_dontknow]


Title: Re: Decimal Chart?
Post by: stroh on January 20, 2008, 12:14:28 PM
tom terrific with 2 incompletions on the 1st drive.  same amount as ALL of last game.
 [sm_shock]


 [sm_laughatyou]

??? [sm_dontknow]

LOL  Wrong thread.


Title: Re: Decimal Chart?
Post by: twoiron on January 20, 2008, 12:43:34 PM
It's amazing what you miss by not logging on over the weekend.

Math and Excel is strictly a Monday to Friday jaunt for me.

 ;)


Title: Re: Decimal Chart?
Post by: E-A-G-L-E! on January 20, 2008, 05:48:59 PM
It's amazing what you miss by not logging on over the weekend.

Math and Excel is strictly a Monday to Friday jaunt for me.

 ;)

It's still the weekend. :D


Title: Re: Decimal Chart?
Post by: Uisce Beatha on January 21, 2008, 07:17:50 AM
I remember when we were kids we had to walk to school three miles in the snow uphill both ways. 

And our decimal charts had ha'pence, shillings and crowns. 

And excel meant do good at maths.

And all we could afford to drink was Strohs.

And Clive was infection free.

And the band played Waltzing Matilda.


Title: Re: Decimal Chart?
Post by: Walfredo on January 21, 2008, 09:58:08 AM
So what exactly is the teacher's point to that assignment? 


Title: Re: Decimal Chart?
Post by: stroh on January 21, 2008, 10:04:30 AM
So what exactly is the teacher's point to that assignment? 

LOL  I was waiting to hear that.  ;D

Actually, the table is not an assignment, I wanted it as a tool to visualize the relationships of those numbers.

In her math class, they have just introduced decimals, and are mixing them in with addition and subtraction.  She adds and subs just fine, but the one she is having trouble with is:

 Complete the sequence  .083, .088, .093, _____, _____, _____ .

I thought it would be easier for her to see it laid out sequentialy. (and me [sm_anon] )


Title: Re: Decimal Chart?
Post by: gleek on January 21, 2008, 10:10:26 AM
So what exactly is the teacher's point to that assignment? 

LOL  I was waiting to hear that.  ;D

Actually, the table is not an assignment, I wanted it as a tool to visualize the relationships of those numbers.

In her math class, they have just introduced decimals, and are mixing them in with addition and subtraction.  She adds and subs just fine, but the one she is having trouble with is:

 Complete the sequence  .083, .088, .093, _____, _____, _____ .

I thought it would be easier for her to see it laid out sequentialy. (and me [sm_anon] )

If she's adding and subtracting just fine, just tell her to keep adding .005 to the last item in the series.  ;D


Title: Re: Decimal Chart?
Post by: stroh on January 21, 2008, 10:12:30 AM
So what exactly is the teacher's point to that assignment? 

LOL  I was waiting to hear that.  ;D

Actually, the table is not an assignment, I wanted it as a tool to visualize the relationships of those numbers.

In her math class, they have just introduced decimals, and are mixing them in with addition and subtraction.  She adds and subs just fine, but the one she is having trouble with is:

 Complete the sequence  .083, .088, .093, _____, _____, _____ .

I thought it would be easier for her to see it laid out sequentialy. (and me [sm_anon] )

If she's adding and subtracting just fine, just tell her to keep adding .005 to the last item in the series.  ;D

 [sm_laughing]

 Thanks


Title: Re: Decimal Chart?
Post by: Aske on January 21, 2008, 10:16:19 AM
So what exactly is the teacher's point to that assignment? 

LOL  I was waiting to hear that.  ;D

Actually, the table is not an assignment, I wanted it as a tool to visualize the relationships of those numbers.

In her math class, they have just introduced decimals, and are mixing them in with addition and subtraction.  She adds and subs just fine, but the one she is having trouble with is:

 Complete the sequence  .083, .088, .093, _____, _____, _____ .

I thought it would be easier for her to see it laid out sequentialy. (and me [sm_anon] )

you should have her answer in binary or hex and see if the teacher's head explodes

 [sm_devil]

0.00011001000101101  FTW


Title: Re: Decimal Chart?
Post by: Seamus on January 21, 2008, 10:28:26 AM
Is this Leader O'Cola? Help me I'm lost.
(http://www.jewishmag.com/59mag/einstein/einstein.jpg)