Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() ![]() vice-versa....Can I make the worksheet tab show what ever text I put in cell A1? Thanks for looking, I appreciate any help!! ;) -- TerryAnnThomas ------------------------------------------------------------------------ TerryAnnThomas's Profile: http://www.excelforum.com/member.php...o&userid=31837 View this thread: http://www.excelforum.com/showthread...hreadid=515581 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Try in any cell: =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32) (workbook must be saved first) -- Max Singapore ![]() This is an awesome site, and I thank everyone involved from the host to the users. I hope I can help someone sometime.:) -- TerryAnnThomas ------------------------------------------------------------------------ TerryAnnThomas's Profile: http://www.excelforum.com/member.php...o&userid=31837 View this thread: http://www.excelforum.com/showthread...hreadid=515581 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() TerryAnnThomas Wrote: ![]() vice-versa....Can I make the worksheet tab show what ever text I put in cell A1? Thanks for looking, I appreciate any help!! ;) HiTerry, If your interested in VBA, to name the worksheet tab, for whatever is put into A1, this is one way, for one sheet. Can be made for all sheets if you need. Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ExitSub If Not Application.Intersect(Me.Range("A1"), _ Target) Is Nothing Then _ Me.Name = Me.Range("A1").Value ExitSub: End Sub -- Desert Piranha ------------------------------------------------------------------------ Desert Piranha's Profile: http://www.excelforum.com/member.php...o&userid=28934 View this thread: http://www.excelforum.com/showthread...hreadid=515581 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Dave, Thanks for your help, this is much better. I am very fasinated with VBA. However I find I require a lot of notes/cheat sheets with VBA as I have a bad memory. At least I remember the capabilities of excel and then I know how to use my notes or how to find -excel angels -like yourself. I Hope I can return the favor for someone even less knowledgable than myself (I know ![]() there!) Seriously Dave, I appreciate your help! Terry -- TerryAnnThomas ------------------------------------------------------------------------ TerryAnnThomas's Profile: http://www.excelforum.com/member.php...o&userid=31837 View this thread: http://www.excelforum.com/showthread...hreadid=515581 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() TerryAnnThomas Wrote: Dave, Thanks for your help, this is much better. I am very fasinated with VBA. However I find I require a lot of notes/cheat sheets with VBA as I have a bad memory. At least I remember the capabilities of excel and then I know how to use my notes or how to find -excel angels -like yourself. I Hope I can return the favor for someone even less knowledgable than myself (I know ![]() there!) Seriously Dave, I appreciate your help! Terry Hi Terry, I'm sure you excel in other catagorys. (no pun intended) :) Glad to be able to help. -- Desert Piranha ------------------------------------------------------------------------ Desert Piranha's Profile: http://www.excelforum.com/member.php...o&userid=28934 View this thread: http://www.excelforum.com/showthread...hreadid=515581 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Instead of a negative number, I'd like to show zero... | Excel Worksheet Functions | |||
Cell color based upon cell value | Excel Discussion (Misc queries) | |||
cell color index comparison | New Users to Excel | |||
GET.CELL | Excel Worksheet Functions | |||
VLookup resulting in a blank cell... | Excel Worksheet Functions |