Hello,
I'm not sure if what I ask for it , is it possible !
so I have number format & text in first digit , the second digit will be space in textbox15 like this
ATRB 1,000.00 and textbox16 will be like this ATRB 15,000.00. so what I look for when sum textbox15+textbox16 then textbox17 will be like this " ATRB 16,000.00 "
I have VAL function but it's useless in this case.
any function to deal with this case guys?
I'm not sure if what I ask for it , is it possible !
so I have number format & text in first digit , the second digit will be space in textbox15 like this
ATRB 1,000.00 and textbox16 will be like this ATRB 15,000.00. so what I look for when sum textbox15+textbox16 then textbox17 will be like this " ATRB 16,000.00 "
I have VAL function but it's useless in this case.
VBA Code:
TextBox17.Value = Val(TextBox15.Value) + Val(TextBox16.Value)