Hello,
I have the following formula in a cell in my spreadsheet:
Code:
=IF(B1726="", "", B1726 & " (version: " & F1726 & ")")
... which I want to automate in VBA.
I've tried:
Code:
ActiveCell.Formula = "=IF(B1726="", "", B1726 & " (version: " & F1726 & ")")
but it doesn't work.
Am not sure how to translate from one to the other.
Thank you in advance for any help ...
Andy :)