How can I reference a cell from a different cell?
For eg:
I want to reference Cell A1 = B1, But dont want any formulas/logic in Cell A1. The formula/logic can be in any other cell.
How can I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to change a cell value without having a formula in the same cell, you’ll likely need to use VBA. For example:
At Wrox Programmer-to-Programmer, Maccas posts the following example:
One question that comes to mind however, is why you don’t want a formula in cell A1?
Something like
=IF(some_condition, B1, "")would leave cell A1 blank unless it met some condition, but populate it with B1’s value otherwise.