Link to home
Start Free TrialLog in
Avatar of Andreas Hermle
Andreas HermleFlag for Germany

asked on

Draw a value from another worksheet, not as static text but as a formula (using VBA)

Dear Experts:

Below macro draws a value from another worksheet and enters it into Cell Z2 of the worksheet named "2_Results"

Worksheets("2_Results").Range("Z2").Value = Worksheets("3_OverallList").Range("Q2") & " have no company name!"

How do I have to tweak the code so that there is no static text in Z2 but the formula...

='3_OverallList'!Q2 & " have no company name"

Help is much appreciated. Thank you very much in advance.

Regards, Andreas
ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Andreas Hermle

ASKER

Thank you very much for your swift help. Regards, Andreas