This is one piece of code I have written
Private Sub txtironmass_Change()
Dim x As range
Set x = Worksheets("program").range("d23")
x.Select
ActiveCell.Formula = "=z-y"
End Sub
This is another piece of code I have tried.
Private Sub txtironmass_Change()
Dim myrange1 As range...
Please can someone tell me, I have a formula in cell d23 and the answer I would like to display in my textbox, but when I try to display it, the formula disappears or excel crashes. If I use the source option under properties, it does not seem to work with a formula. I wish to subtract two...
Please can someone tell me, I have a formula in cell d23 and the answer I would like to display in my textbox, but when I try to display it, the formula disappears or excel crashes. If I use the source option under properties, it does not seem to work with a formula. I wish to subtract two...