Results 1 to 2 of 2

Thread: Door Panel Type Instance, Schedule Type Mark

  1. #1
    Woo! Hoo! my 1st post
    Join Date
    2019-01
    Posts
    1
    Login to Give a bone
    0

    Default Door Panel Type Instance, Schedule Type Mark

    I have a door family that has an integer instance parameter that controls the "door panel type" where "1" equals a flush panel, "2" equals half lite, "3" equals Full lite etc.

    I'm trying to tie either a text parameter or a perhaps another integer parameter to the "door panel type" where if you change the instance parameter "door panel type" it will output "A", "B", or "C" to a scheduled shared parameter which these letters correspond with my door panel type legend where an "A" is a flush panel, "B" is a half lite, "C" is a full lite etc.

    This is my setup so far
    Capture.JPG

    Any helpful input would be really appreciated, thank you!

    -Steven

  2. #2
    Super Moderator dkoch's Avatar
    Join Date
    2003-03
    Location
    Philadelphia, PA
    Posts
    2,392
    Login to Give a bone
    0

    Default Re: Door Panel Type Instance, Schedule Type Mark

    Add a formula to the Panel Type Mark parameter:

    if(Panel Type = 0, "A", if(Panel Type = 1, "B", "C"))

    That will set the Panel Type Mark parameter to "A" if Panel Type is set to 0, "B" if set to 1 and "C" if set to any other value. You can nest additional if statements if you have more than three types. If you want to show "C" only if Panel Type is 2, then something like the following could be done:

    if(Panel Type = 0, "A", if(Panel Type = 1, "B", if(Panel Type = 2, "C", "ERROR")))

Similar Threads

  1. 2013: Door Schedule - Panel Type and Frame Type
    By jboersema in forum Revit Architecture - General
    Replies: 3
    Last Post: 2018-09-04, 01:30 PM
  2. 2016: SCHEDULE NESTED SHARED PANEL FAMILY TYPE IN HOSTED DOOR ROW
    By aheitzman79 in forum Revit Architecture - General
    Replies: 0
    Last Post: 2018-08-28, 07:52 PM
  3. Can I delete Type Mark Parameter from a Door?
    By billy007nh in forum Revit Architecture - Families
    Replies: 3
    Last Post: 2011-07-27, 05:22 PM
  4. Changing type mark in Door tag
    By theshell07 in forum Revit Architecture - Families
    Replies: 4
    Last Post: 2010-08-30, 05:25 PM
  5. Door families: Instance or type parameters
    By tim.101799 in forum Revit Architecture - Families
    Replies: 3
    Last Post: 2006-02-02, 02:02 PM

Tags for this Thread

Posting Permissions

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