How to refer to fields from another record?

waltern

New Member
Joined
Jan 5, 2003
Messages
3
HI
New to access
I'm in field c record x
i want to make calc from fields a,b,c from some records before x and write infield f
how i refere to this fields???
thanx
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
if at all possible you don't.

9 times out of 10 an improved db design will save you having to do this. Or is yours the 1 in 10?
 
Upvote 0
On 2003-01-06 07:57, dmckinney wrote:
if at all possible you don't.

9 times out of 10 an improved db design will save you having to do this. Or is yours the 1 in 10?
I have to make calc becouse it refer to a average from some fields before!!!
 
Upvote 0
If you must put the results of a calculation in a field then put this code in the After Update event procedure of field c

Me![f] = Me![a]+Me!+Me![c]

I have assumed you are adding the fields. Change the operand where necessary.


David
 
Upvote 0

Forum statistics

Threads
1,221,506
Messages
6,160,205
Members
451,630
Latest member
zxhathust

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