How is it that it is still not possible in AutoCAD LT to count the total number of sheets. It's insane that this can only be done with LISP and isnt' a basic value stored by the system variables. As for sheet sets as an option, no I do not want to use it, it requires external files to manage, which makes it more complicated to control. A simple file with 2-10 sheets for electrical drawings should be simple enough to contain a 1 OF X sheets count without massive scripting.
Please Autodesk add this before adding more 'features' to new revisions.
Solved! Go to Solution.
How is it that it is still not possible in AutoCAD LT to count the total number of sheets. It's insane that this can only be done with LISP and isnt' a basic value stored by the system variables. As for sheet sets as an option, no I do not want to use it, it requires external files to manage, which makes it more complicated to control. A simple file with 2-10 sheets for electrical drawings should be simple enough to contain a 1 OF X sheets count without massive scripting.
Please Autodesk add this before adding more 'features' to new revisions.
Solved! Go to Solution.
Solved by cadffm. Go to Solution.
Sebastian
Sebastian
Thanks cadffm.
I will post it in the Ideas section, and call our rep to try and push it more.
I think the disconnect here is application of civil and mechanical drawings versus application of AutoCAD LT for Electrical drawings. Which has always felt weird but is still common in a lot of places for electrical wiring diagrams.
Generally, all the wiring is done in the Model space, and the Sheets are all sequential (1,2,3,etc) with no old or unused drawings, as the content would be removed from the active views.
It's one of those funny things that was possible using LISP, as a work around, but because of that it never made it as a simple variable. But LT unfortunately cannot do LISP.
I hope to be able to do a simple 1 OF X, as we have on our all schematics within Altium Designer.
NOTE: There is no AutoCAD LT Product option under Ideas... Just wonderful Autodesk.
Thanks cadffm.
I will post it in the Ideas section, and call our rep to try and push it more.
I think the disconnect here is application of civil and mechanical drawings versus application of AutoCAD LT for Electrical drawings. Which has always felt weird but is still common in a lot of places for electrical wiring diagrams.
Generally, all the wiring is done in the Model space, and the Sheets are all sequential (1,2,3,etc) with no old or unused drawings, as the content would be removed from the active views.
It's one of those funny things that was possible using LISP, as a work around, but because of that it never made it as a simple variable. But LT unfortunately cannot do LISP.
I hope to be able to do a simple 1 OF X, as we have on our all schematics within Altium Designer.
NOTE: There is no AutoCAD LT Product option under Ideas... Just wonderful Autodesk.
Thanks. Sorry, should have referred to them as "Layouts". That's my past experience with them always being referred to as sheets by the older guys slipping through.
Example given above in the image. I'm just looking for a simple method (done in LISP as past places, but we're looking to only use AutoCAD LT as it's cheaper) to update the "2" value to the total number of layouts, not including the model.
I don't believe it can be done with DEISEL but I hope someone can show me otherwise. If possible to count the number of times a "titleblock" block has been inserted may be one method.
Thanks. Sorry, should have referred to them as "Layouts". That's my past experience with them always being referred to as sheets by the older guys slipping through.
Example given above in the image. I'm just looking for a simple method (done in LISP as past places, but we're looking to only use AutoCAD LT as it's cheaper) to update the "2" value to the total number of layouts, not including the model.
I don't believe it can be done with DEISEL but I hope someone can show me otherwise. If possible to count the number of times a "titleblock" block has been inserted may be one method.
The count isn't stored, you also can't extract the values for the sheets position in the row, so if you move the layouts about there is no way of knowing which is first, second etc, I used to place the layout number as the first 2 digits of the layout name (which can be extracted using diesel into the title) but when you start adding layouts and need to change the order it gets a little annoying, and again something that you have to keep updating is a named environmental variable for the number of layouts (again readable with diesel) but again you have to manually keep it updated. It's just one of those little things in life that would be really nice, but probably won't happen.
The count isn't stored, you also can't extract the values for the sheets position in the row, so if you move the layouts about there is no way of knowing which is first, second etc, I used to place the layout number as the first 2 digits of the layout name (which can be extracted using diesel into the title) but when you start adding layouts and need to change the order it gets a little annoying, and again something that you have to keep updating is a named environmental variable for the number of layouts (again readable with diesel) but again you have to manually keep it updated. It's just one of those little things in life that would be really nice, but probably won't happen.
Dean,
Why can't we just have a system variable which is a total count of all the layout tabs?
Dean,
Why can't we just have a system variable which is a total count of all the layout tabs?
Technically no problem
Write the software manufacturer your wish, maybe he fulfills this.
Sebastian
Technically no problem
Write the software manufacturer your wish, maybe he fulfills this.
Sebastian
How does sheet set manager automate counting the total number of sheets?
I know you can add it as a field but you still need to manually count them yourself... unless I am missing something
How does sheet set manager automate counting the total number of sheets?
I know you can add it as a field but you still need to manually count them yourself... unless I am missing something
the best way I found is to use a field linked to a custom value created in drawing properties. its not automatic, but it works well. just go into drawing properties and select the custom tab. add a new property, call it total sheets or something you decide and blamo, you are in like flynn.
the best way I found is to use a field linked to a custom value created in drawing properties. its not automatic, but it works well. just go into drawing properties and select the custom tab. add a new property, call it total sheets or something you decide and blamo, you are in like flynn.
For anyone still having this issue, I had to design the templates for my office who were at the time
only using LT, and I came up with a solution that works very well and is super simple to implement into any title block.
The first thing you do is use the DWGPROPS command to open up your Drawing Properties window.
From there navigate to the "Custom" Tab and hit "Add"
From here you will create a custom property that can be linked to a field, and some of you probably
already know where I'm going with this.
Name the property "Sheets Total" and give it a default value of whatever you want, I prefer XXX since our
layouts can sometimes number in the hundreds.
From there go to your title block and invoke the field command.
At the pop up window you should be able to navigate to the custom property you created, so in this case
"Sheets Total."
This text then behaves like any other field. However, you can now invoke the DWGPROPS command again and
change the "Sheets Total" dialogue box to whatever you want, and it will update every instance of the field
in your drawing for you after a simple REGEN.
I hope this helps anyone in the future.
Displaying the current sheet number is similarly easy, you just use the field command to display the "CTAB" system variable, and whatever you name your tab will be displayed in the field.
I find this is very helpful for making "Sheet x of xx" in title blocks.
Good Luck!
For anyone still having this issue, I had to design the templates for my office who were at the time
only using LT, and I came up with a solution that works very well and is super simple to implement into any title block.
The first thing you do is use the DWGPROPS command to open up your Drawing Properties window.
From there navigate to the "Custom" Tab and hit "Add"
From here you will create a custom property that can be linked to a field, and some of you probably
already know where I'm going with this.
Name the property "Sheets Total" and give it a default value of whatever you want, I prefer XXX since our
layouts can sometimes number in the hundreds.
From there go to your title block and invoke the field command.
At the pop up window you should be able to navigate to the custom property you created, so in this case
"Sheets Total."
This text then behaves like any other field. However, you can now invoke the DWGPROPS command again and
change the "Sheets Total" dialogue box to whatever you want, and it will update every instance of the field
in your drawing for you after a simple REGEN.
I hope this helps anyone in the future.
Displaying the current sheet number is similarly easy, you just use the field command to display the "CTAB" system variable, and whatever you name your tab will be displayed in the field.
I find this is very helpful for making "Sheet x of xx" in title blocks.
Good Luck!
I have been using the same Custom Properties with fields recently. Still have to manually count the sheets but dont have to go sheet by sheet to edit total page number once the field is set up. Also with the CTAB variable the, thing is, is that your sheets have to be numbered 1, 2, 3... which is not what great since I want my sheets to have individual names for different detail sheets. Unless there is something else other than the tab name that the field can reference for each individual sheet. So far haven't found anything.
I have been using the same Custom Properties with fields recently. Still have to manually count the sheets but dont have to go sheet by sheet to edit total page number once the field is set up. Also with the CTAB variable the, thing is, is that your sheets have to be numbered 1, 2, 3... which is not what great since I want my sheets to have individual names for different detail sheets. Unless there is something else other than the tab name that the field can reference for each individual sheet. So far haven't found anything.
If you use LAYOUTS then explore getting into SSM (SheetSet Manager): usage is explained in HELP and many good tutorials online.
HTH
If you use LAYOUTS then explore getting into SSM (SheetSet Manager): usage is explained in HELP and many good tutorials online.
HTH
It's already end of May, 2022. Most people are still looking for solution for Total Sheet Count in AutoCAD LT (2020, in my case). I just want to tell you: I found your solution as the Best! one so far. Yes, it's involves a manual input, but you'd only do it once, considering the drawing on 12-15 sheets.
Thank you again,
Sincerely,
Vladimir V.
It's already end of May, 2022. Most people are still looking for solution for Total Sheet Count in AutoCAD LT (2020, in my case). I just want to tell you: I found your solution as the Best! one so far. Yes, it's involves a manual input, but you'd only do it once, considering the drawing on 12-15 sheets.
Thank you again,
Sincerely,
Vladimir V.
@vladimirvay wrote:It's already end of May, 2022.
Try posting that over in the ideas forum where people talk about adding stuff.
@vladimirvay wrote:Most people are still looking for solution for Total Sheet Count in AutoCAD LT
Actually, most people don't use this kind of notation anymore.
@vladimirvay wrote:It's already end of May, 2022.
Try posting that over in the ideas forum where people talk about adding stuff.
@vladimirvay wrote:Most people are still looking for solution for Total Sheet Count in AutoCAD LT
Actually, most people don't use this kind of notation anymore.
What kind of notation most people use now?
What kind of notation most people use now?
Можно сделать собственную переменную
Подробно рассказано вот здесь
https://www.cadforum.cz/en/total-number-of-layouts-as-a-field-tip11171
На случай, если пропадет файл, загрузил и сюда:
в AutoCAD вводим команду APPLOAD
там указываем путь к файлу .lsp
при следующем запуске соглашаемся использовать
переменную ищем как totallayouts в переменных lisp (ну или как там вы ее назовете)
Пользуемся с великой благодарностью к cadforum cz
Можно сделать собственную переменную
Подробно рассказано вот здесь
https://www.cadforum.cz/en/total-number-of-layouts-as-a-field-tip11171
На случай, если пропадет файл, загрузил и сюда:
в AutoCAD вводим команду APPLOAD
там указываем путь к файлу .lsp
при следующем запуске соглашаемся использовать
переменную ищем как totallayouts в переменных lisp (ну или как там вы ее назовете)
Пользуемся с великой благодарностью к cadforum cz
Can't find what you're looking for? Ask the community or share your knowledge.