Hello again!
This time is about formatting number to percent and round it to 2 decimals.
I've tried the following:
What I need is to see in VBA --> 1,36%
I've also tried changing Excel values to % format, but VBA seems not to take that %values either.
Any suggestion would be greatly appreaciated,
Thanks!
This time is about formatting number to percent and round it to 2 decimals.
I've tried the following:
Excel | VBA | Code |
0,00136678989 | 1,36678989 | .cells(10,6) |
0,00136678989 | 0,0014 | Round(.Cells(10,6), 4) |
0,00136678989 | 1,36678989E-03 | Format(.Cells(10,6), Percent) |
0,00136678989 | 0,0014 | Round(Format(.Cells(10,6), Percent), 4) |
What I need is to see in VBA --> 1,36%
I've also tried changing Excel values to % format, but VBA seems not to take that %values either.
Any suggestion would be greatly appreaciated,
Thanks!