adding another cell line to your speadsheet

luisjtj

New Member
Joined
Apr 27, 2011
Messages
4
Hello to all,
I need to know how to add another line to any existing spreadsheet.
Example;
Line 53 Income (existing)
Line 54 abc
Line 55 123
Line 56 Adding a New Line to the existing spreadsheet formula in this spot or any other location within the speadsheet.

Please help.....

Thank you, Luis
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Welcome to the forums!

I'm not quite sure I understand what you are asking. Are you trying to adjust a formula? Type into a cell? :confused:
 
Upvote 0
Try

Code:
Sub InsRow()
Dim Found As Range
Set Found = Columns("A").Find(what:="Income", LookIn:=xlValues, lookat:=xlPart)
If Not Found Is Nothing Then
    Found.Offset(3).EntireRow.Insert
Else
    MsgBox "Not found"
End If
End Sub
 
Upvote 0
Welcome to the forums!

I'm not quite sure I understand what you are asking. Are you trying to adjust a formula? Type into a cell? :confused:

Hi and thanks for responding.
No. I'm trying to add another line from any point of a given speadsheet.
So if these purchase excel templates are already formulated I would like to add another line into the calculations weather in a income line or expense line as an example on a profit and loss statement excel template.
 
Upvote 0
It sounds like you are wanting to Insert a row.

Try right-clicking on the row and choose "Insert"
 
Upvote 0
Yes, That is exactly what I'm trying to do. On any given formula of these purchase excel templates. I would like to add in any line to continue adding more incomes or expense line to the existing formula...:)
In between lines example; Line 53 Line 54 add new line as line 53b or after or before?
 
Upvote 0
Try the above method I described on line 54.
 
Upvote 0

Forum statistics

Threads
1,224,618
Messages
6,179,917
Members
452,949
Latest member
beartooth91

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