I have an excel with different formats on different machines.
In one machine I have decimal points 2,30,863.67
same value on other machine is 230.863,67
While adding or subtracting I am getting issues ,so how to make it to standard format inside the code ,where it changes its format and make standard value like 2,30,863.67.
Note:It should not disturb the other bots ,it should only convert in inside this program while running .
Actually I cannot change because there are many other process which runs on that machines, if I change it will effect the other bots which are running fine.
Each country will have a different decimal formats . so You can use Regex to identify the Method. And Then use the Switch statement as per the format and Replace any “.” to “” and then “,” to “.” .
The challenge might occur when there is only one of comma or dot.