Use filename as date

srcasm83

New Member
Joined
Jan 5, 2009
Messages
9
If the file name of a spreadsheet is 01-10-09.xls, is there a formula to use the file name as the date in any given cell? I tried =CELL("filename") but that gives the whole path, and all I need is the numbers so that the date will show up in this cell in dddd, mmmm dd, yyyy format. Any help is appreciated!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Assuming the fact that you are use a consistent naming convention on the file names (mm-dd-yy) perhaps:

=DATEVALUE(MID(CELL("filename"),FIND(".xls",CELL("filename"))-8,8))
you could of course hold CELL("filename") in one cell and refer to that cell in the above as opposed to repeating the function in the above formula.

Then given the result is a date you can apply a Custom Format of on the cell as you detail.

Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,214,800
Messages
6,121,641
Members
449,044
Latest member
hherna01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top