formulas in tabs - Excell 200

RedSand_pei

New Member
Joined
Apr 8, 2002
Messages
2
Hello,

Is there anyway to enter in a foumula in tabs in Excel 2000. I would like to have a formula in a tab that would feed of a spread sheet. I hear that this isn't possible. All you can do is name them by typing it in. Anybody?
This message was edited by RedSand_pei on 2002-04-09 10:44
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
If you want to rename your worksheet whenever the contents change, the thing to do is use the worksheet.name property in VB - something like this:

Hit alt F11 on the relevent sheet and enter the following code:

Private Sub Worksheet_Calculate()
ActiveWorkbook.Worksheets(1).Name = Sheets(1).Cells(1, 1).value
End Sub

where the cell A1 contains the formula result that you require to be the sheets name.

Note that the code will only work each time you update the calculation in the worksheet.
 
Upvote 0

Forum statistics

Threads
1,213,544
Messages
6,114,239
Members
448,555
Latest member
RobertJones1986

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