Results 1 to 2 of 2

Thread: Drawing Revisions Number as a Field in Sheet Set Manager

  1. #1
    100 Club
    Join Date
    2002-04
    Posts
    154
    Login to Give a bone
    0

    Question Drawing Revisions Number as a Field in Sheet Set Manager

    I'm curious why there are some different fields available for the tables compared to in the s.s.m. From the Insert Sheet List Table dialog box, I have added 3 columns, one being for drawing revisions. I have selected the Drawing Revision Number field from the data type column. However, Drawing Revisions Number (from what I see) is not available as a field in the s.s.m. so I'm having trouble linking my title block revision number with the revision number displaying in the list of drawing sheets. I can create a custom field in the s.s.m that would take care of my title block, but I can't create the same custom field when I go to make my table.

    Can someone sort me out. Thanks,

    Jason

  2. #2
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: Drawing Revisions Number as a Field in Sheet Set Manager

    It is the Revision Number that you see in the drawing's properties dialog (DwgProps). This property is modifiable via code (VBA is my preference).
    Code:
    Sub Test()
      Dim myProps As AcadSummaryInfo
      Set myProps = ThisDrawing.SummaryInfo
      myProps.RevisionNumber = 1
      Set myProps = Nothing
    End Sub

Similar Threads

  1. 2014: Revision Field Values Missing in Revisions on Sheet Dialog
    By jeff351881 in forum Revit Architecture - General
    Replies: 8
    Last Post: 2014-06-23, 05:05 PM
  2. trying to edit field to show Current Sheet Number
    By jmauro930585 in forum AutoCAD Sheet Set Manager
    Replies: 7
    Last Post: 2012-02-16, 12:27 PM
  3. Link attribute field to sheet number
    By LanceMcHatton in forum AutoCAD Fields
    Replies: 2
    Last Post: 2008-07-03, 03:04 PM
  4. Show View Number and Sheet Number in the same field?
    By kkinchen in forum AutoCAD Fields
    Replies: 3
    Last Post: 2007-03-19, 05:48 PM
  5. Sheet number field
    By ch00su in forum AutoCAD Fields
    Replies: 9
    Last Post: 2006-10-12, 11:26 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •