Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
My chart setting was to use space as thousand separator. In the load script main, I changed it to coma (,). The problem is that the existing charts are still using the space as thousand separator even though new charts are using the new settings
My question is if there is any way to globally change the thousand separator in all charts at once instead of doing it one by one in each chart by going to the number formatting property of each chart. I was expecting it to change if I change the setting from load script but it did not work
Regards
Shah
I think it is not possible unfortunately
You could use a macro with a logic like this:
for each sheet
for each object
if object = chart
for each expression
change NumberPresentation.Dec
....
Have a look into APIGuide.qvw and you will find for each step examples but you will need some effort to combine these and build a successfully routine .
- Marcus