
- #VIEW DOCUMENT PROPERTIES WORD HOW TO#
- #VIEW DOCUMENT PROPERTIES WORD FULL#
- #VIEW DOCUMENT PROPERTIES WORD CODE#
The Word Count dialog box appears as follows (depending on the selection): Note that screenshots in this article are from Word 365 but are very similar in Word 2013, 20. Check out the article 14+ Word Selection Shortcuts to Quickly Select Text. There are many other great ways to quickly select text in Word. If you want to select non-adjacent or non-contiguous sections of text, press Ctrl and drag over areas of text. You can also triple-click in a paragraph or click at the beginning of a selection and Shift-click at the end of a selection. To select the entire document, press Ctrl + A (although total count appears if you simply click in text).
#VIEW DOCUMENT PROPERTIES WORD HOW TO#
Recommended article: How to Quickly Remove Hard Returns in Word Documentsĭo you want to learn more about Microsoft Word? Check out our virtual classroom or in-person Word courses > The dialog box displays counts for the current selection. The Word Count dialog box shows the number of pages, words, characters (with and without spaces), paragraphs and lines in your document. Word count and other statistics are also available in Word Properties. In addition to word count, you can check a document for the number of characters, lines, paragraphs and pages. Although word count is typically displayed in the Status Bar, you can view a Word Count dialog box which can be displayed using the Ribbon, the Status Bar or a keyboard shortcut. You can view word count in Word documents in several ways. Fixing this problem would not be something that Microsoft could show off at demonstrations and isn’t cloud related so it’s a lower development priority.View Word Count in Microsoft Word Documentsīy Avantix Learning Team | Updated September 17, 2021Īpplies to: Microsoft ® Word ® 2013, 2016, 2019 or 365 (Windows) But the same care wasn’t taken to making use of those properties. why are all the document properties in Excel to begin with? Our spies tell us that there was a Microsoft management edict to have the same interface for document properties in Word, Excel and PowerPoint so that was done by each development team. The custom functions above are just ‘wrappers’ that make the existing VBA feature available to the worksheet.
#VIEW DOCUMENT PROPERTIES WORD CODE#
You’d think with all those options in the worksheet structure they’d be accompanied by a function like say DocProperty() which insert or even change the properties within the worksheet, for example =DocProperty(“Title”) could insert the document title.Īs you can see from the VBA code above, the document properties are available in VBA so making them available in a regular Excel function would not seem a big ask. There’s no direct way to use document properties in the worksheet! CustomDocumentProperties(Info_needed).Value Note that there’s no error checking, if you request a property that isn’t set or existing, an error is returned.įor custom properties you need a slightly different function such as: Private Function DocPropCustom(Info_needed As String) As VariantĭocPropCustom = ThisWorkbook.
#VIEW DOCUMENT PROPERTIES WORD FULL#
The full list of available properties is here – where you’ll also find details of the VBA property used. Use any of the regular document property names, including Use this formula to add a property to the worksheet: =docprop("Author") Private Function DocProp(Info_needed As String) As VariantĭocProp = ThisWorkbook.BuiltinDocumentProperties(Info_needed).Value We found this one here from ‘Jon-jon’, thanks. In Excel, the only way to add document properties into a worksheet is via a custom function. Go to File | Info in Excel 2013 (Prepare | Properties in Excel 2007) and all the properties are there including a document panel, advanced and custom properties, same as in Word. You can add and edit document properties in worksheets much the same as in Word documents. We also complained about the poor support for properties in Excel. We’ve already told you about document properties and how useful they are in Word.
