Manually Update the formula in table Using VBA

mahhdy

Board Regular
Joined
Sep 15, 2016
Messages
86
Hello,
I have a big table of data, 10000 row and more than 20 formula fields with links to other files... I have to update this table each day by new data (I just update the first column). I wanted a way to manually update these data so it happens per field not as per row (default behaviour of excel table) and I can control the screen updating and manually calculate and so. But I knew a way for directly computing cell values in VBA, something like putting the formula in [] or computing based on the cell address. Any help or idea?

Regards,
M
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
if B1 = 3 and C1 = 4
and you want to add them and put the answer in A1

cells(1,1) = cells(1,2)+cells(1,3)
 
Upvote 0
Thanks I have a little bit knowledge about this.

I mean something instead of :
.range("table1[test1]").formula= "=vlookup([@code],table2,3,0)"

I write something that allocates values to that range not the formula, I know there is something for that.
Thanks


if B1 = 3 and C1 = 4
and you want to add them and put the answer in A1

cells(1,1) = cells(1,2)+cells(1,3)
 
Upvote 0
give us some pretend numbers and a pretend answer - use a left table for one sheet and a right table for another
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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