Howto apply formula to ongoing column of data

momo333

New Member
Joined
Aug 14, 2011
Messages
4
Hi,

How can I apply a formula to an ongoing column of data?

I have a column of values and I want to have a cell in another area of the workbook to have a formula that always updates when I add another value to the end of my column.

Thanks for taking the time to read my question.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi Momo333,

Hm, sounds interesting ! Let us have a simple example. What that separate cell is supposed to contain ? Thank you.
 
Upvote 0
Modify your formula to look at the cell and if it is empty, have it display the empty string (""), otherwise have it display your formula.... then you can copy your formula down past the end of your data (usually down to the row beyond which you ever expect to have data in) and the display will update automatically as new data is entered or old data modified. For example, if you have this in

=MyFomulaLookingAt(A2)

and if Column A is the column with the data you want to monitor, then change your formula to this...

=IF(A2="","",MyFomulaLookingAt(A2))
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,901
Members
452,948
Latest member
Dupuhini

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