Manual cells don't follow the automatically moving formula cells.

Pablo Espressobar

New Member
Joined
Nov 15, 2017
Messages
6
Hi Everyone,

I've got an Excel Table that contains different columns of data. Some rows have formulas in it, some of them have data i input manually.
Example: (You can find the Formula below the table, because it's a little long)

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Serial[/TD]
[TD]Quantity[/TD]
[TD]Hours[/TD]
[TD]Price[/TD]
[/TR]
[TR]
[TD]Formula[/TD]
[TD]a12[/TD]
[TD]10[/TD]
[TD]4[/TD]
[TD]="Hours"*10[/TD]
[/TR]
[TR]
[TD]Formula[/TD]
[TD]b34[/TD]
[TD]20[/TD]
[TD]12[/TD]
[TD]="Hours"*10[/TD]
[/TR]
[TR]
[TD]Formula[/TD]
[TD]c56[/TD]
[TD]30[/TD]
[TD]36[/TD]
[TD]="Hours"*10[/TD]
[/TR]
[TR]
[TD]Formula[/TD]
[TD]d78[/TD]
[TD]40[/TD]
[TD]18[/TD]
[TD]="Hours"*10[/TD]
[/TR]
</tbody>[/TABLE]

Formula:
=IFERROR(INDEX($C$3:$C$1000;SMALL(IF(NOT(ISBLANK($T$3:$T$1000));ROW($T$3:$T$1000)-ROW($T$3)+1;IF(NOT(ISBLANK($W$3:$W$1000));ROW($W$3:$W$1000)-ROW($W$3)+1;IF(NOT(ISBLANK($Z$3:$Z$1000));ROW($Z$3:$Z$1000)-ROW($Z$3)+1)));ROW(T5)));"")

The formula is searching another excel table for content (I've deleted the addressing to make it more readable). If it finds data in the arrays listed then it copies the data from the actual row of C3:C1000 into my table. If it finds a blank cell it skips it. So basically it makes a small table from a big one.

So now that you know the background let me explain my problem. :)

If the formula finds a new row E.G. between "c56" and "d78", then it shifts d78 down and places the new row to it's place. In this case my manually added data stays on its place and doesn't follow its Name and Price.
Is there any way to bound these cells together if i add the Manual data?
Any suggestions appriciated, i'm familiar with VBA too.

Regards,
Pablo
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,223,911
Messages
6,175,333
Members
452,636
Latest member
laura12345

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