You can use variables to hold each value you need. You can make it something like this...
Dim Var1 as Double
Dim Var2 as Double
Dim SubTotal As Double
Var1 = CDbl(Text1.text) * 0.16
Var2 = 0.16
SubTotal = Var1 + Var2
'Label1 Shows the value of SubTotal
Label1.Caption = SubTotal
Var2 is the tax code e.g 16%, just like that.. Hope it helps...