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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,214,585
Messages
6,120,399
Members
448,958
Latest member
Hat4Life

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