It's me again. Just want to thank you guys again for being very helpful.
Have a weird problem.
If i'm in excel and do =sum(at:at) it comes out to a dollar amount of 42.99 (expected)
However, when i'm in VBA and doing:
Set freight = ws1.Range("AT:AT")
ws3.Range("B2") = Application.Sum(freight)
It comes pretty close to the number but instead it is something like 42.989932
The weird part is that there are no extra decimel places anywhere in column AT to give it these extra places. Any ideas?
Have a weird problem.
If i'm in excel and do =sum(at:at) it comes out to a dollar amount of 42.99 (expected)
However, when i'm in VBA and doing:
Set freight = ws1.Range("AT:AT")
ws3.Range("B2") = Application.Sum(freight)
It comes pretty close to the number but instead it is something like 42.989932
The weird part is that there are no extra decimel places anywhere in column AT to give it these extra places. Any ideas?