#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Question

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Question

=mod(A1,48) returns the remainder when the value in A1 is divided by 48;
gives zero if exactly divisible.
=IF(mod(A1,48),"Not divisible",")
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

wrote in message
ups.com...
Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Question

Maybe this will help...........

=IF((A1*12)/48-INT((A1*12)/48)=0,"Yes","No")

Vaya con Dios,
Chuck, CABGx3



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 96
Default Question

i maybe confused here but try this...

maybe u mean if 48 is divisible by which divisor <integer e.g. 4...without
a remainder...

A1=number (divisor)

on B1
=mod(48,A1)=0

returns True if divisible or false if not divisible <no remainder

--
*****
birds of the same feather flock together..



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Question

dribler2 wrote:
i maybe confused here but try this...

maybe u mean if 48 is divisible by which divisor <integer e.g. 4...without
a remainder...

A1=number (divisor)

on B1
=mod(48,A1)=0

returns True if divisible or false if not divisible <no remainder

--
*****
birds of the same feather flock together..



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?



Thank you all for replying... much appreiciated. I am going to share
what I am working on... Dont know why I am doing this but I started it
and now I want to finish it... I work in a sheet metal fabrication
facility and what I want to do is make an easy (which I thought) spread
sheet to calculate how many sheets of material (typically 48 wide
material) I am going to use and any drop piece I might have. If things
are divisible into 48, everything works great, but if I have a width of
lets say 18.75 thats when things get screwed up a bit... on a width of
18.75" I am going to get 2 cuts per sheet and drop of 10.5in. If I
type in 9 pcs @ 18.75", 120 length, I should get 2 per sheet and use 5
sheets and a drop pc of 29.25". If you can understand this great, if
not well I will keep plugging along... I have learned alot already from
trial and error so I am winning either way. :)

example of what I am trying to achieve.

PIECES WIDTH LENGTH #FOOT sheets used per sheet drop pc.
6 8 in. 120 in. 40 1 6 0
9 18.75 120 140.63 5 2 29.2
1 25 120 20.83 1 1 23



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CLR CLR is offline
external usenet poster
 
Posts: 594
Default Question

In A1 put 18.75...the cut size
In B1 put 48........the sheet size
IN C1 put =INT(B1/A1)......yield of whole pieces
In D1 put =(B1/A1-C1)*A1...remaining drop size

hth
Vaya con Dios,
Chuck, CABGx3



"Brumeister" wrote in message
oups.com...
dribler2 wrote:
i maybe confused here but try this...

maybe u mean if 48 is divisible by which divisor <integer e.g.

4...without
a remainder...

A1=number (divisor)

on B1
=mod(48,A1)=0

returns True if divisible or false if not divisible <no remainder

--
*****
birds of the same feather flock together..



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?



Thank you all for replying... much appreiciated. I am going to share
what I am working on... Dont know why I am doing this but I started it
and now I want to finish it... I work in a sheet metal fabrication
facility and what I want to do is make an easy (which I thought) spread
sheet to calculate how many sheets of material (typically 48 wide
material) I am going to use and any drop piece I might have. If things
are divisible into 48, everything works great, but if I have a width of
lets say 18.75 thats when things get screwed up a bit... on a width of
18.75" I am going to get 2 cuts per sheet and drop of 10.5in. If I
type in 9 pcs @ 18.75", 120 length, I should get 2 per sheet and use 5
sheets and a drop pc of 29.25". If you can understand this great, if
not well I will keep plugging along... I have learned alot already from
trial and error so I am winning either way. :)

example of what I am trying to achieve.

PIECES WIDTH LENGTH #FOOT sheets used per sheet drop pc.
6 8 in. 120 in. 40 1 6 0
9 18.75 120 140.63 5 2 29.2
1 25 120 20.83 1 1 23



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 96
Default Question

Brumeister,

try to learn solver and goal seek tools in excel...if bare material economy
is your reason for doing this calculation...
Bare quantity of material that you order for your fabrication must include
also other factors (besides waste calculated in your sheet).
try to browse through http://www.solver.com/exceluse.htm..., i think i have
seen one sample problem exactly the same as yours....

good luck
--
*****
birds of the same feather flock together..



"Brumeister" wrote:

dribler2 wrote:
i maybe confused here but try this...

maybe u mean if 48 is divisible by which divisor <integer e.g. 4...without
a remainder...

A1=number (divisor)

on B1
=mod(48,A1)=0

returns True if divisible or false if not divisible <no remainder

--
*****
birds of the same feather flock together..



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?



Thank you all for replying... much appreiciated. I am going to share
what I am working on... Dont know why I am doing this but I started it
and now I want to finish it... I work in a sheet metal fabrication
facility and what I want to do is make an easy (which I thought) spread
sheet to calculate how many sheets of material (typically 48 wide
material) I am going to use and any drop piece I might have. If things
are divisible into 48, everything works great, but if I have a width of
lets say 18.75 thats when things get screwed up a bit... on a width of
18.75" I am going to get 2 cuts per sheet and drop of 10.5in. If I
type in 9 pcs @ 18.75", 120 length, I should get 2 per sheet and use 5
sheets and a drop pc of 29.25". If you can understand this great, if
not well I will keep plugging along... I have learned alot already from
trial and error so I am winning either way. :)

example of what I am trying to achieve.

PIECES WIDTH LENGTH #FOOT sheets used per sheet drop pc.
6 8 in. 120 in. 40 1 6 0
9 18.75 120 140.63 5 2 29.2
1 25 120 20.83 1 1 23


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Question

If you are doing a lot of this cutting try this neat little program.

http://cutlistplus.com/?wo

Download a free trial. Note the LT version allows 25 parts per project.


Gord Dibben MS Excel MVP

On 10 Jan 2007 17:04:08 -0800, "Brumeister" wrote:

dribler2 wrote:
i maybe confused here but try this...

maybe u mean if 48 is divisible by which divisor <integer e.g. 4...without
a remainder...

A1=number (divisor)

on B1
=mod(48,A1)=0

returns True if divisible or false if not divisible <no remainder

--
*****
birds of the same feather flock together..



" wrote:

Is there any way to find out if a particular cell is divisible by 48
(i.e 4 ft)?



Thank you all for replying... much appreiciated. I am going to share
what I am working on... Dont know why I am doing this but I started it
and now I want to finish it... I work in a sheet metal fabrication
facility and what I want to do is make an easy (which I thought) spread
sheet to calculate how many sheets of material (typically 48 wide
material) I am going to use and any drop piece I might have. If things
are divisible into 48, everything works great, but if I have a width of
lets say 18.75 thats when things get screwed up a bit... on a width of
18.75" I am going to get 2 cuts per sheet and drop of 10.5in. If I
type in 9 pcs @ 18.75", 120 length, I should get 2 per sheet and use 5
sheets and a drop pc of 29.25". If you can understand this great, if
not well I will keep plugging along... I have learned alot already from
trial and error so I am winning either way. :)

example of what I am trying to achieve.

PIECES WIDTH LENGTH #FOOT sheets used per sheet drop pc.
6 8 in. 120 in. 40 1 6 0
9 18.75 120 140.63 5 2 29.2
1 25 120 20.83 1 1 23


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Possibly a loaded question, but I think mileslit Excel Discussion (Misc queries) 1 September 10th 05 01:18 AM
How do I find and replace a question mark in Excel? Ranpalandil Excel Discussion (Misc queries) 1 September 7th 05 10:20 PM
Newbie With A Question Michael Excel Worksheet Functions 0 July 28th 05 11:50 PM
Anybody Help with previous question Anthony Excel Discussion (Misc queries) 1 July 26th 05 01:26 PM
Hints And Tips For New Posters In The Excel Newsgroups Gary Brown Excel Worksheet Functions 0 April 15th 05 05:47 PM


All times are GMT +1. The time now is 11:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"