How would I go about turning the excel formula =B4/B5 into vba code? So far, this is my code which does not work of course:
ActiveCell.FormulaR1C1 = "=B4/B5"
As you can tell, I am not very familiar with R1C1. If needed, I have created a function Col_Letter()
which takes a number and returns the letter of the corresponding column. Any help would be greatly appreciated!