Return to site

Storyist 4 1 2 Equals

broken image


Location: http://www.mvps.org/dmcritchie/excel/fractex1.htm Home page: http://www.mvps.org/dmcritchie/excel/excel.htm[View without Frames]

The formatted display of fractional measurements in Excel leaves a lot to be desired. This example and the formulas shown below were generously provided by Bernie Deitrick as a follow-up to a posting 2000-08-04 in the microsoft.public.excel.misc newsgroup. Bernie's formulas will be simplified after comments from Harlan Grove and corrections from by Ron Rosenberg on 2003-01-03

The corrections to be made will allow the numbers to be treated arithmetically, though they are being formatted strictly for display. The other formulas showing mixed feet, inches and fractional inches will still requidre something more than these simplified formulas, and will be text to allow feet and inch marks to appear next to figures even if strictly Feet and fractional feet.

I believe the formula on this page will need some revision based on the following advice by Ron Rosenberg on 2003-01-26

---------------- Examples for 1/4, 1/8, 1/16, 1/32, 1/64 -----------
for 4ths
=ROUND(A1*4,0)/4 -- format as 0 #/##

for 8ths
=ROUND(A1*8,0)/8 -- format as 0 #/##

for 16ths
=ROUND(A1*16,0)/16 -- format as 0 #/##

for 32nds
=ROUND(A1*32,0)/32 -- format as 0 #/##

Storyist 4.1.2 Storyist is a powerful story development tool for novelists and screenwriters. With an intuitive interface that puts you in control, Storyist provides: A word processor with. A new chapter is created in the same way, whenever you're ready. But a new chapter starts 1/3 of the way down the page and can contain one or more scenes. What's your software of choice? There you have my 4 top reasons for using Storyist this November. Storyist cracked for Mac – is a The Mac Mac cracked app for fast editing of novels. Storyist for mac has an intuitive interface. The page layout supports headers, footers and style sheets. It can easily connect story plots and has customizable stories to edit plots, characters, and other settings., Is a good helper for novelists and screenwriters.

  1. When I click on the links, that's what I see on my desktop (Storyist 1.3.6, Mac OS 10.4.11). What happens if you rezip the file through Terminal and move the results to the Templates folder? I'm at the edges of my technical expertise here, so you may want to wait for Steve Shepard, the developer, to weigh in, especially if you're new to Macs.
  2. For the first time female recruits are joining the men with no allowances or exceptions made for them. The opening round comes from the Chilean Andes.

for 64ths
=ROUND(A1*64,0)/64 -- format as 0 #/##

Simplified Formulas: Bernie Deitrick sent (2005-03-04) sent me a simplied means of redoing his previous work -- see how long it takes me to actually change formulas used. For Feet and fractional inches.
2/3
Storyist

formula for cell E7:
=INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*128,0)/128,'##/###'),')&''

Storyist For Windows 10

instead of his previous original beautiful formulas that is shown here to show some neat worksheet functions usage from his Aug 2000 examples: =INT(A1/12)&' ' & TEXT(MOD(A1,12),'0' &IF(ABS(MOD(A1,12)-ROUND(MOD(A1,12),0))>1/256, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(MOD(A1,12)*{2,4,8,16,32,64,128},0)-MOD(A1,12)*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128}),ABS(ROUND(MOD(A1,12)*{2,4,8,16,32,64,128},0)-MOD(A1,12)*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128},0),2,4,8,16,32,64,128),'))&''

ABCDE
126.0827Fr: Simple Decimal
To: Simple Fractions
Fr: Decimal Inches
To: Fractional Inches
Fr: Decimal Feet
To: Inches and Fractional Inches
Fr: Decimal Inches
To: Feet, Inches and Fract. Inches
2Down to 4ths2626'26' 1'2' 2 0/4'
3Down to 8ths26 1/826 1/8'26' 1'2' 2 1/8'
4Down to 16ths26 1/1626 1/16'26' 1'2' 2 1/16'
5Down to 32nds26 3/3226 3/32'26' 1'2' 2 3/32'
6Down to 64ths26 5/6426 5/64'26' 1'2' 2 5/64'
7Down to 128ths26 11/12826 11/128'26' 0 127/128'2' 2 11/128'
8
9This spreadsheet gives formulas used to display decimal values given in cell A1 as fractions with the denominator being variable and chosen as the smallest among 2,4,8,16.... as appropriate.
Equations developed by Bernie Deitrick
b1Fr: Simple Decimal To: Simple Fractions
b226=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/8,' 0/'&CHOOSE(ROUND(MOD(A1,1)*4,0),4,2,4),')) =MROUND(A1,1/4) -- Analysis Toolpak Function -- format as 0 ##/## =ROUND(A1*4,0)/4 -- Without the Analysis Toolpak Function -- format as 0 ##/##
b326 1/8=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/16,' 0/'&CHOOSE(ROUND(MOD(A1,1)*8,0),8,4,8,2,8,4,8),')) =MROUND(A1,1/8) -- Analysis Toolpak Function -- format as 0 ##/##
b426 1/16=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/32,' 0/'&CHOOSE(ROUND(MOD(A1,1)*16,0),16,8,16,4,16,8,16,2,16,8,16,4,16,8,16),')) =MROUND(A1,1/16) -- Analysis Toolpak Function -- format as 0 ##/##
b526 3/32=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/64, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32},0)-A1*{2,4,8,16,32})/{2,4,8,16,32}),ABS(ROUND(A1*{2,4,8,16,32},0)-A1*{2,4,8,16,32})/{2,4,8,16,32},0),2,4,8,16,32),')) =MROUND(A1,1/32) -- Analysis Toolpak Function -- format as 0 ##/##
b626 5/64=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/128, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32,64},0)-A1*{2,4,8,16,32,64})/{2,4,8,16,32,64}),ABS(ROUND(A1*{2,4,8,16,32,64},0)-A1*{2,4,8,16,32,64})/{2,4,8,16,32,64},0),2,4,8,16,32,64),')) =MROUND(A1,1/64) -- Analysis Toolpak Function -- format as 0 ##/##
b726 11/128=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/256, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32,64,128},0)-A1*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128}),ABS(ROUND(A1*{2,4,8,16,32,64,128},0)-A1*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128},0),2,4,8,16,32,64,128),')) =MROUND(A1,1/128) -- Analysis Toolpak Function -- format as 0 ##/##
c1Fr: Decimal Inches To: Fractional Inches
c226'=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/8,' 0/'&CHOOSE(ROUND(MOD(A1,1)*4,0),4,2,4),'))&''
c326 1/8'=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/16,' 0/'&CHOOSE(ROUND(MOD(A1,1)*8,0),8,4,8,2,8,4,8),'))&''
c426 1/16'=TEXT(A1,'0'&IF(ABS(A1-ROUND(A1,0))>1/32,' 0/'&CHOOSE(ROUND(MOD(A1,1)*16,0),16,8,16,4,16,8,16,2,16,8,16,4,16,8,16),'))&''
c526 3/32'=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/64, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32},0)-A1*{2,4,8,16,32})/{2,4,8,16,32}),ABS(ROUND(A1*{2,4,8,16,32},0)-A1*{2,4,8,16,32})/{2,4,8,16,32},0),2,4,8,16,32),'))&''
c626 5/64'=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/128, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32,64},0)-A1*{2,4,8,16,32,64})/{2,4,8,16,32,64}),ABS(ROUND(A1*{2,4,8,16,32,64},0)-A1*{2,4,8,16,32,64})/{2,4,8,16,32,64},0),2,4,8,16,32,64),'))&''
c726 11/128'=TEXT(A1,'0' &IF(ABS(A1-ROUND(A1,0))>1/256, ' 0/'&CHOOSE(MATCH(MIN(ABS(ROUND(A1*{2,4,8,16,32,64,128},0)-A1*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128}),ABS(ROUND(A1*{2,4,8,16,32,64,128},0)-A1*{2,4,8,16,32,64,128})/{2,4,8,16,32,64,128},0),2,4,8,16,32,64,128),'))&''
d1Fr: Decimal Feet To: Feet and Fractional Inches
d226' 1'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*4,0)/4,'##/###'),')&''
d326' 1'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*8,0)/8,'##/###'),')&''
d426' 1'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*16,0)/16,'##/###'),')&''
d526' 1'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*32,0)/32,'##/###'),')&''
d626' 1'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*64,0)/64,'##/###'),')&''
d726' 0 127/128'=INT(A$1)&'&IF(INT(A$1)<>A$1,' ' & TEXT(ROUND((A$1-INT(A$1))*128,0)/128,'##/###'),')&''
e1Fr: Decimal Inches To: Feet and Fractional Inches
e22' 2 0/4' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*4,0)/4,'##/##'),')&''
e32' 2 1/8' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*8,0)/8,'##/##'),')&''
e42' 2 1/16' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*16,0)/16,'##/##'),')&''
e52' 2 3/32' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*32,0)/32,'##/##'),')&''
e62' 2 5/64' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*64,0)/64,'##/##'),')&''
e72' 2 11/128' =INT(A1/12)&' '&INT(MOD(A1,12))&'&IF(INT(A1)<>A1,' ' & TEXT(ROUND((A1-INT(A1/12)*12-INT(MOD(A1,12)))*128,0)/128,'##/###'),')&''
Presentation above Copyright ©2000, Bernie Deitrick

Preparation of Data on this Page

A second sheet was copied from the original Excel spreadsheet supplied by Bernie and the formulas used were displayed as follows:

A12: B2
B12: (pasted from B2)
C12: =GetFormula(indirect(A12))

The original section was converted to HTML with XL2HTMLX, and the formulas section was converted to HTML with XL2HTML with macros described on my HTML page.

Related

  • This page is a continuation of the carpentry and fractions area on my Formula page.
  • You can find some macros for conversions in an example spreadsheet. Look for 'feet-inch.xls' download at www.steel-link.com/2002/downloads/other.cfm This site is about tools and references for steel fabricating and detailing. Has AutoCad files, bolt calculation program, some fonts, things of interest to those working with steel.
  • Conversion of Feet and Inches to Decimal Values, John Lacher, CPA
  • allmath.com: Metric Conversion Tool, JAVA/HTML, more Martindale's Calculators On-Line Center (Over 18,135 calculators).
You are one of many distinguished visitors who have visited my site here or in a previous location since this page was created on August 08, 2000.

Visit [my Excel home page][Index page][Excel Onsite Search][top of this page]

Presentation in HTML format by David McRitchie

Appreciative comments should be directed to Bernie Deitrick mailto:deitbe@consumer.org for the content.

Storyist Review

Please send your comments concerning formatting of this web page to: David McRitchie send email comments

Copyright © 1997 - 2004, F. David McRitchie, All Rights Reserved // portions within tables © Bernie Deitrick

Storyist 2

Buy the Storyist 2 at a super low price. Looking for Storyist 2? We have found the best price. You can get these product with affordable price from popular online shopping site. Most of the consumer reviews tell that the Storyist 2 are high-quality product and it is also reasonably priced.

You can purchase these product with special discount. Yess!! Low price with fast shipping offer here. Check xx price and additional information via click the link below!!.

You can read each testimony from consumers to find out more about their experience. The Storyist 2 reviews will give you a solid indication of the value and reliability of the products. Overall, It is the best quality product and we are absolutely recommend it.

Recent updates :





broken image