Dispolay workbook propertiesPartially Solved : Excel Simple Edits to PathExcel multiple files macro - write file name to cell A1Open a workbook from Saved locationHow to retain number formats when inserting data into an xlsx workbook via openxlsx writeData()Excel VBA - Is Workbook OpenHaving a user choose where to save an Excel workbookGetting formatting information of a cell in an Excel workbook in RUnlock multiple workbooks and each workbook has their own password (VBA)Create a new workbook from an Excel template located in a different folderCopy-save a sheet in a new workbook named after contents of some specific cells from that same sheet

Can the additional attack from a Samurai's Rapid Strike have advantage?

How to prevent a single-element caster from being useless against immune foes?

How can a class have multiple methods without breaking the single responsibility principle

"Will flex for food". What does this phrase mean?

Oath of redemption: Does Emmissary of Peace reflect damage taken from Aura of the Guardian?

How to structure presentation to avoid getting questions that will be answered later in the presentation?

Has the US government provided details on plans to deal with AIDS and childhood cancer?

Could flaps be raised upward to serve as spoilers / lift dumpers?

Why do MS SQL Server SEQUENCEs not have an ORDER parameter like Oracle?

Are some indefinite integrals impossible to compute or just don't exist?

If the Moon were impacted by a suitably sized meteor, how long would it take to impact the Earth?

Can birds evolve without trees?

How did Biff return to 2015 from 1955 without a lightning strike?

Is this mechanically safe?

How can flights operated by the same company have such different prices when marketed by another?

How to let cacti grow even if no player is near?

Disease transmitted by postage stamps

IBM mainframe classic executable file formats

Conflict between senior and junior members

Return last number in sub-sequences in a list of integers

A game of red and black

How to get values on a rastar layer to provide me with values

How do I respond appropriately to an overseas company that obtained a visa for me without hiring me?

Delete the following space



Dispolay workbook properties


Partially Solved : Excel Simple Edits to PathExcel multiple files macro - write file name to cell A1Open a workbook from Saved locationHow to retain number formats when inserting data into an xlsx workbook via openxlsx writeData()Excel VBA - Is Workbook OpenHaving a user choose where to save an Excel workbookGetting formatting information of a cell in an Excel workbook in RUnlock multiple workbooks and each workbook has their own password (VBA)Create a new workbook from an Excel template located in a different folderCopy-save a sheet in a new workbook named after contents of some specific cells from that same sheet






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to build a document template that always display the workbook properties, certain ones at that, in a cell.



For Example: I may want to see the file path complete with filename and file extension (.xls, .xlsx, or .xlsm), or I may simply wish to display the workbook title, with NO FILE PATH and NO FILE EXTENSION.



=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)


but this brings the extension with it. I do not want that.



Function Name()
Name = ActiveWorkbook.BuiltinDocumentProperties.("Title")
End Function


Then I type =Name() into the cell I want the file name displayed. But all I get is a big fat "0".



Similar code works when inserting "Last Author" for "Title".



See above










share|improve this question


























  • Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

    – datatoo
    Mar 26 at 23:10

















0















I am trying to build a document template that always display the workbook properties, certain ones at that, in a cell.



For Example: I may want to see the file path complete with filename and file extension (.xls, .xlsx, or .xlsm), or I may simply wish to display the workbook title, with NO FILE PATH and NO FILE EXTENSION.



=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)


but this brings the extension with it. I do not want that.



Function Name()
Name = ActiveWorkbook.BuiltinDocumentProperties.("Title")
End Function


Then I type =Name() into the cell I want the file name displayed. But all I get is a big fat "0".



Similar code works when inserting "Last Author" for "Title".



See above










share|improve this question


























  • Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

    – datatoo
    Mar 26 at 23:10













0












0








0








I am trying to build a document template that always display the workbook properties, certain ones at that, in a cell.



For Example: I may want to see the file path complete with filename and file extension (.xls, .xlsx, or .xlsm), or I may simply wish to display the workbook title, with NO FILE PATH and NO FILE EXTENSION.



=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)


but this brings the extension with it. I do not want that.



Function Name()
Name = ActiveWorkbook.BuiltinDocumentProperties.("Title")
End Function


Then I type =Name() into the cell I want the file name displayed. But all I get is a big fat "0".



Similar code works when inserting "Last Author" for "Title".



See above










share|improve this question
















I am trying to build a document template that always display the workbook properties, certain ones at that, in a cell.



For Example: I may want to see the file path complete with filename and file extension (.xls, .xlsx, or .xlsm), or I may simply wish to display the workbook title, with NO FILE PATH and NO FILE EXTENSION.



=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)


but this brings the extension with it. I do not want that.



Function Name()
Name = ActiveWorkbook.BuiltinDocumentProperties.("Title")
End Function


Then I type =Name() into the cell I want the file name displayed. But all I get is a big fat "0".



Similar code works when inserting "Last Author" for "Title".



See above







excel properties-file






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 0:10









Roshith

1,66911 silver badges21 bronze badges




1,66911 silver badges21 bronze badges










asked Mar 26 at 22:52









Glen SaegerGlen Saeger

1




1















  • Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

    – datatoo
    Mar 26 at 23:10

















  • Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

    – datatoo
    Mar 26 at 23:10
















Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

– datatoo
Mar 26 at 23:10





Your formula is pretty close. Instead of searching for the "]" search for the "." as the second FIND

– datatoo
Mar 26 at 23:10












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367332%2fdispolay-workbook-properties%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367332%2fdispolay-workbook-properties%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript