Okay, I feel like I'm missing something major here; however I am trying to subtract arrays on VBA. I need to subtract the arrays and assign them to another variable x
so I cant do a normalizing function. Below is my version of the code:
Code:
Dim xnew As Variant, xTable As Variant, x As Variant
xnew = [{1,2}]
xTable = [{4,3}]
x = xTable - xnew
MsgBox (x)
I swear this is a stupid question and I have looked around the internet for this simple operation, but to my demise, nothing has come up... I see this question as different to MINUS operation on Array elements because the person asking here is trying to change the size of the array, I am not.