Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Please can you help with the following problem:
I would like to apply formulas in say Row 5, to the following cells: F5, H5, J5, K5, O5, P5, T5, U5, Y5, Z5. These formulas are the copied from Row 5 to Row 10,000. The problem is, if I make a mistake in inputting data and I then need to clear the contents of a cell or an entire row, the formulas are lost in that row. How can I ensure that the formulas are not lost and still able to input data in the cleared cells. Mnay thanks, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this small macro:
Sub cForm() For Each i In Array(6, 8, 10, 11, 15, 16, 20, 21, 25, 16) Cells(5, i).Copy Range(Cells(6, i), Cells(10000, i)) Next End Sub -- Gary''s Student - gsnu200856 "Ra" wrote: Please can you help with the following problem: I would like to apply formulas in say Row 5, to the following cells: F5, H5, J5, K5, O5, P5, T5, U5, Y5, Z5. These formulas are the copied from Row 5 to Row 10,000. The problem is, if I make a mistake in inputting data and I then need to clear the contents of a cell or an entire row, the formulas are lost in that row. How can I ensure that the formulas are not lost and still able to input data in the cleared cells. Mnay thanks, |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You should not be inputting data into cells that have formulas so I don't
understand why you get a loss of formulas if you clear contents on an input cell. Formulas are for collecting from input cells. Gord Dibben MS Excel MVP On Sun, 14 Jun 2009 00:34:01 -0700, Ra wrote: Please can you help with the following problem: I would like to apply formulas in say Row 5, to the following cells: F5, H5, J5, K5, O5, P5, T5, U5, Y5, Z5. These formulas are the copied from Row 5 to Row 10,000. The problem is, if I make a mistake in inputting data and I then need to clear the contents of a cell or an entire row, the formulas are lost in that row. How can I ensure that the formulas are not lost and still able to input data in the cleared cells. Mnay thanks, |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
This question is not clear to me. If you have cells with formulas and then you type on the formulas you will loose the formulas, if you then clear the content of the cells the formulas will not reappear. Is that what you really want to have happen? -- If this helps, please click the Yes button. Cheers, Shane Devenshire "Ra" wrote: Please can you help with the following problem: I would like to apply formulas in say Row 5, to the following cells: F5, H5, J5, K5, O5, P5, T5, U5, Y5, Z5. These formulas are the copied from Row 5 to Row 10,000. The problem is, if I make a mistake in inputting data and I then need to clear the contents of a cell or an entire row, the formulas are lost in that row. How can I ensure that the formulas are not lost and still able to input data in the cleared cells. Mnay thanks, |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Gary
Many thanks for your help. Greatly appreciated. "Gary''s Student" wrote: Try this small macro: Sub cForm() For Each i In Array(6, 8, 10, 11, 15, 16, 20, 21, 25, 16) Cells(5, i).Copy Range(Cells(6, i), Cells(10000, i)) Next End Sub -- Gary''s Student - gsnu200856 "Ra" wrote: Please can you help with the following problem: I would like to apply formulas in say Row 5, to the following cells: F5, H5, J5, K5, O5, P5, T5, U5, Y5, Z5. These formulas are the copied from Row 5 to Row 10,000. The problem is, if I make a mistake in inputting data and I then need to clear the contents of a cell or an entire row, the formulas are lost in that row. How can I ensure that the formulas are not lost and still able to input data in the cleared cells. Mnay thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
applying formulas for all sheets selected | Excel Worksheet Functions | |||
Applying formulas to filtered data | Excel Discussion (Misc queries) | |||
Applying range names to existing formulas in separate worksheets | Excel Discussion (Misc queries) | |||
Applying Formulas to Visible Cells Only | Excel Discussion (Misc queries) | |||
Applying Offset to Range in VBA | Excel Worksheet Functions |