hello, I read this under the topic "How to get a formula field to total an
entire table column, even if some cells in the column contain text or are
blank" on the MVP-site and can't get it to work. I'm interested in the final
bit, using ;""
Does anyone know how to do this?
<start quotation>...
Then in the total cell, press Ctrl+F9, and within the field braces {},
insert the following formula:
{ SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
“Table1” in the formula refers to the name of the bookmark you've marked the
main table with. The formula, being in a different table from the column it's
totalling, wouldn't know which table you were referencing otherwise. The F:F
bit means the 6th column from the left.
The bit at the end of the formula:
;''"
.... means that if there are no values in column F, don't display anything
(otherwise it would display 0.00). I learnt that trick from Word MVP Cindy
Meister.
....<end quotation>
--
A professional template builder
|
|
0
|
|
|
|
Reply
|
Utf
|
12/5/2009 2:12:01 PM |
|
You probably confused ;''" at the end (semi-colon, two single quotation
marks, double quotation mark) with ;"" (semi-colon, two double quotation
marks).
--
Stefan Blom
Microsoft Word MVP
"JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
news:0E9AF40B-1AE8-4274-95AC-0F5574BBEC08@microsoft.com...
> hello, I read this under the topic "How to get a formula field to total an
> entire table column, even if some cells in the column contain text or are
> blank" on the MVP-site and can't get it to work. I'm interested in the
> final
> bit, using ;""
> Does anyone know how to do this?
>
> <start quotation>...
>
> Then in the total cell, press Ctrl+F9, and within the field braces {},
> insert the following formula:
>
> { SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
>
> "Table1" in the formula refers to the name of the bookmark you've marked
> the
> main table with. The formula, being in a different table from the column
> it's
> totalling, wouldn't know which table you were referencing otherwise. The
> F:F
> bit means the 6th column from the left.
>
> The bit at the end of the formula:
>
> ;''"
>
> ... means that if there are no values in column F, don't display anything
> (otherwise it would display 0.00). I learnt that trick from Word MVP Cindy
> Meister.
>
> ...<end quotation>
>
> --
> A professional template builder
|
|
0
|
|
|
|
Reply
|
Stefan
|
12/5/2009 2:33:19 PM
|
|
If you are *working in the table*, the following will work
{ =SUM(F:F) \# ",0.00;-,0.00;"}
If you are *working outside the table*, display the formatting by clicking
the � button
At the end of each row of the table (outside the table) there is a cell end
character. Put the cursor between one of these characters and the table (it
doesn't matter which) and insert a bookmark - Table1
The following will then work
{ =SUM(Table1 F:F) \# ",0.00;-,0.00;"}
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
"JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
news:0E9AF40B-1AE8-4274-95AC-0F5574BBEC08@microsoft.com...
> hello, I read this under the topic "How to get a formula field to total an
> entire table column, even if some cells in the column contain text or are
> blank" on the MVP-site and can't get it to work. I'm interested in the
> final
> bit, using ;""
> Does anyone know how to do this?
>
> <start quotation>...
>
> Then in the total cell, press Ctrl+F9, and within the field braces {},
> insert the following formula:
>
> { SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
>
> "Table1" in the formula refers to the name of the bookmark you've marked
> the
> main table with. The formula, being in a different table from the column
> it's
> totalling, wouldn't know which table you were referencing otherwise. The
> F:F
> bit means the 6th column from the left.
>
> The bit at the end of the formula:
>
> ;''"
>
> ... means that if there are no values in column F, don't display anything
> (otherwise it would display 0.00). I learnt that trick from Word MVP Cindy
> Meister.
>
> ...<end quotation>
>
> --
> A professional template builder
|
|
0
|
|
|
|
Reply
|
Graham
|
12/5/2009 2:45:44 PM
|
|
Thanks!
I got it working now, you were right about my confusion...
is this a hidden option of the \# option?
Do u know of a site/article that discusses in-depth word-formulas?
Would be interested in that.
--
A professional template builder
"Stefan Blom" wrote:
> You probably confused ;''" at the end (semi-colon, two single quotation
> marks, double quotation mark) with ;"" (semi-colon, two double quotation
> marks).
>
> --
> Stefan Blom
> Microsoft Word MVP
>
>
>
> "JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
> news:0E9AF40B-1AE8-4274-95AC-0F5574BBEC08@microsoft.com...
> > hello, I read this under the topic "How to get a formula field to total an
> > entire table column, even if some cells in the column contain text or are
> > blank" on the MVP-site and can't get it to work. I'm interested in the
> > final
> > bit, using ;""
> > Does anyone know how to do this?
> >
> > <start quotation>...
> >
> > Then in the total cell, press Ctrl+F9, and within the field braces {},
> > insert the following formula:
> >
> > { SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
> >
> > "Table1" in the formula refers to the name of the bookmark you've marked
> > the
> > main table with. The formula, being in a different table from the column
> > it's
> > totalling, wouldn't know which table you were referencing otherwise. The
> > F:F
> > bit means the 6th column from the left.
> >
> > The bit at the end of the formula:
> >
> > ;''"
> >
> > ... means that if there are no values in column F, don't display anything
> > (otherwise it would display 0.00). I learnt that trick from Word MVP Cindy
> > Meister.
> >
> > ...<end quotation>
> >
> > --
> > A professional template builder
>
>
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
12/6/2009 8:01:01 PM
|
|
Hi JOHABE,
For an in-depth discussion of field calculations in Word, check out my Word Field Maths Tutorial, at:
http://lounge.windowssecrets.com/index.php?showtopic=365442
or
http://www.gmayor.com/downloads.htm#Third_party
After you've digested that, you might also want to check out my Word Date Calculation Tutorial, at:
http://lounge.windowssecrets.com/index.php?showtopic=249902
or
http://www.gmayor.com/downloads.htm#Third_party
Do read both documents' introductory material.
--
Cheers
macropod
[Microsoft MVP - Word]
"JOHABE" <JOHABE@discussions.microsoft.com> wrote in message news:1EA256FA-0C45-4C03-AB6D-791A70E188E7@microsoft.com...
> Thanks!
> I got it working now, you were right about my confusion...
> is this a hidden option of the \# option?
> Do u know of a site/article that discusses in-depth word-formulas?
> Would be interested in that.
> --
> A professional template builder
>
>
> "Stefan Blom" wrote:
>
>> You probably confused ;''" at the end (semi-colon, two single quotation
>> marks, double quotation mark) with ;"" (semi-colon, two double quotation
>> marks).
>>
>> --
>> Stefan Blom
>> Microsoft Word MVP
>>
>>
>>
>> "JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
>> news:0E9AF40B-1AE8-4274-95AC-0F5574BBEC08@microsoft.com...
>> > hello, I read this under the topic "How to get a formula field to total an
>> > entire table column, even if some cells in the column contain text or are
>> > blank" on the MVP-site and can't get it to work. I'm interested in the
>> > final
>> > bit, using ;""
>> > Does anyone know how to do this?
>> >
>> > <start quotation>...
>> >
>> > Then in the total cell, press Ctrl+F9, and within the field braces {},
>> > insert the following formula:
>> >
>> > { SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
>> >
>> > "Table1" in the formula refers to the name of the bookmark you've marked
>> > the
>> > main table with. The formula, being in a different table from the column
>> > it's
>> > totalling, wouldn't know which table you were referencing otherwise. The
>> > F:F
>> > bit means the 6th column from the left.
>> >
>> > The bit at the end of the formula:
>> >
>> > ;''"
>> >
>> > ... means that if there are no values in column F, don't display anything
>> > (otherwise it would display 0.00). I learnt that trick from Word MVP Cindy
>> > Meister.
>> >
>> > ...<end quotation>
>> >
>> > --
>> > A professional template builder
>>
>>
>> .
>>
|
|
0
|
|
|
|
Reply
|
macropod
|
12/7/2009 4:44:08 AM
|
|
For more on the "numeric picture" switch, see this article:
Numeric Picture (\#) field switch
http://office.microsoft.com/en-us/word/HP051862261033.aspx?pid=CH061047321033
--
Stefan Blom
Microsoft Word MVP
"JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
news:1EA256FA-0C45-4C03-AB6D-791A70E188E7@microsoft.com...
> Thanks!
> I got it working now, you were right about my confusion...
> is this a hidden option of the \# option?
> Do u know of a site/article that discusses in-depth word-formulas?
> Would be interested in that.
> --
> A professional template builder
>
>
> "Stefan Blom" wrote:
>
>> You probably confused ;''" at the end (semi-colon, two single quotation
>> marks, double quotation mark) with ;"" (semi-colon, two double quotation
>> marks).
>>
>> --
>> Stefan Blom
>> Microsoft Word MVP
>>
>>
>>
>> "JOHABE" <JOHABE@discussions.microsoft.com> wrote in message
>> news:0E9AF40B-1AE8-4274-95AC-0F5574BBEC08@microsoft.com...
>> > hello, I read this under the topic "How to get a formula field to total
>> > an
>> > entire table column, even if some cells in the column contain text or
>> > are
>> > blank" on the MVP-site and can't get it to work. I'm interested in the
>> > final
>> > bit, using ;""
>> > Does anyone know how to do this?
>> >
>> > <start quotation>...
>> >
>> > Then in the total cell, press Ctrl+F9, and within the field braces {},
>> > insert the following formula:
>> >
>> > { SUM(Table1 F:F) \# "#,##0.00;- #,##0.00;''" }
>> >
>> > "Table1" in the formula refers to the name of the bookmark you've
>> > marked
>> > the
>> > main table with. The formula, being in a different table from the
>> > column
>> > it's
>> > totalling, wouldn't know which table you were referencing otherwise.
>> > The
>> > F:F
>> > bit means the 6th column from the left.
>> >
>> > The bit at the end of the formula:
>> >
>> > ;''"
>> >
>> > ... means that if there are no values in column F, don't display
>> > anything
>> > (otherwise it would display 0.00). I learnt that trick from Word MVP
>> > Cindy
>> > Meister.
>> >
>> > ...<end quotation>
>> >
>> > --
>> > A professional template builder
>>
>>
>> .
>>
|
|
0
|
|
|
|
Reply
|
Stefan
|
12/7/2009 7:23:45 PM
|
|
|
5 Replies
593 Views
(page loaded in 0.124 seconds)
Similiar Articles: formula field: don't display anything when value is zero (using ...hello, I read this under the topic "How to get a formula field to total an entire table column, even if some cells in the column contain text or are... Formatting 0 values to show blank cells - microsoft.public.excel ...formula field: don't display anything when value is zero ... Formatting 0 values to show blank cells - microsoft.public.excel ..... to protect the formula. Cell formulas display "0" (zero's) - microsoft ...formula field: don't display anything when value is zero ... Here is my original Vlookup ... the formula show a blank ... Excel: blank cell to display zero value ... them ... cell display is blank - microsoft.public.mac.office.excel ...formula field: don't display anything when value is zero ... Why don't you just type an equal sign in the ... Here is my original Vlookup ... the formula show a blank ... Vlookup from a formula field - microsoft.public.excel.misc ...I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value. ... formula field: don't display anything when value is zero ... Formatting 0 values to show ... Pictures don't display in tables - microsoft.public.word ...formula field: don't display anything when value is zero ... hello, I read this under the topic "How to get a formula field to total an entire table column, even if some ... Formula refers to empty cells even when cells contains data ...formula field: don't display anything when value is zero ... Formula refers to empty cells even when cells contains data ... formula field: don't display ... to hide zero ... Field Braces - microsoft.public.word.newusersformula field: don't display anything when value is zero ... Then in the total cell, press Ctrl+F9, and within the field braces {}, insert the following formula: { SUM ... Insert empty numeric value - microsoft.public.accessformula field: don't display anything when value is zero ... Insert empty numeric value - microsoft.public.access formula field: don't display anything when value is zero ... Is there a difference between CTRL+D and CTRL+" (quotation ...formula field: don't display anything when value is zero ... <start quotation>... Then in the total cell, press Ctrl+F9, and ... two single quotation marks ... the table ... formula field: don't display anything when value is zero (using ;"formula field: don't display anything when value is zero (using ;" - answer - hello, I read this under the topic "How to get a formula field to total an entire table ... formula field: don't display anything when value is zero (using ...hello, I read this under the topic "How to get a formula field to total an entire table column, even if some cells in the column contain text or are... Display or hide zero values - Excel - Office.comThere are several ways to display or hide zero values. ... format to hide zero values returned by a formula. Select the cell that contains the zero (0) value. Display or hide zero values - Excel - Office.comTo display zero (0) values in cells, select the Show a zero in cells that have zero value check ... Use a formula to display zeros as blanks or dashes. To do this task, use ... Excel tip: How to not show zero values for forumla result | FiddyP... check if value is zero and put 0 if it is or otherwise show the difference if either one is blank – don’t display anything ... of a formula in another formula field. i.e 7/22/2012 1:14:55 PM
|