I have an journal that create drawing sheets, the problem is when i try create a sheet with an name which already exists, the journal create an new sheet without name.
There are any code to check all existing sheets?
Every part has a .DrawingSheets collection that you can iterate; this will give you access to all existing drawing sheet objects. As you iterate through the sheets, you can check the .Name of each. If the name already exists in the collection, you can use the existing named sheet or create a new sheet with a different name.