Hi.

Go stuck on this, what I thought was simple to do, but how can I subtract between two value relative to the active cell?
Let's say i'm in B2 I want to put the value from A2-A1.

I tried this but get some sort of Error 13 "Incompatible types" (bad translation??)

Sub Subtract2()
ActiveCell.Value = ActiveCell.Offset(0, -1).Value - ActiveCell.Offset(-1, -1).Value
End Sub
Hope you understand what I want here.