Hi all,
1. How do I modify the lines in a chart (series lines)?, I have tried everything, neither info found....

2. When I create a chart, I can only play with its position in pixels. Do you know a way to handle with the cells position?

3. If I use the next code in a button, it works. If I try to create a sub so I can call it with the code, the system says that fname is not declared. I tried to paste in a module and in an event (cmb click) and in the module the system says, it is not declared. If it does not need to be declared, what is wrong then?

Do
fname = Application.GetSaveAsFilename("Manager Report", "*.xls(*.xls),*.xls")
Loop Until fname <> False
ActiveWorkbook.SaveAs Filename:=fname
ActiveWorkbook.Close


yorch-