Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Functions in Excel and Access 1

Status
Not open for further replies.

RAClarke

Instructor
Sep 3, 2001
51
GB
I have two function based question, if anyone can help?

(1) Is there a function which you can use to make a cell equal the value of another cell, rather than the formula behind it? (eg if A3 =A1+A2, putting '=A3' into cell B1 will effectively make B1 =A1+A2 as well, so if A1 changes at some time - during a macro run for example - B1 will change too. I want B1 to take and retain the original value.)

(2) Is there a list of functions in Access equivalent to the list in the Function Painter in Excel?

Thanks
 
Hi RAClarke,

Simple solution, but you NEED to INCLUDE the following code in your macro (i.e. INSTEAD of using a "live" formula in B1.

Sub Update_B1()
Range("B1").Value = Range("A3").Value
End Sub

Hope this helps. Please advise.

Regards, Dale Watson dwatson@bsi.gov.mb.ca
 
That's great! Thanks for your assistance with this!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top