<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Parametric Family - Formula in Revit Architecture Forum</title>
    <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858435#M51676</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am making a parametric industrial bookshelf, which is produced in 2030 mm, 3030 mm and so on in length.&lt;/P&gt;&lt;P&gt;I want to make it round down or up like for example:&lt;/P&gt;&lt;P&gt;Length is above 2500 and it rounds to 3030 and if under, it rounds to 2030.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried following formula, but can't get it to work:&lt;/P&gt;&lt;P&gt;IF (Length&amp;lt;2500, IF true, Length = 2030, IF false, Length = 3030)&lt;/P&gt;&lt;P&gt;IF (Length&amp;lt;2500, Length = 2030)&lt;/P&gt;&lt;P&gt;IF (Length &amp;lt;2500, Length = 2030) IF (Length &amp;lt;2500, Length = 3030)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;CL&lt;/P&gt;</description>
    <pubDate>Thu, 30 Mar 2023 08:39:12 GMT</pubDate>
    <dc:creator>cklLJAHD</dc:creator>
    <dc:date>2023-03-30T08:39:12Z</dc:date>
    <item>
      <title>Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858435#M51676</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am making a parametric industrial bookshelf, which is produced in 2030 mm, 3030 mm and so on in length.&lt;/P&gt;&lt;P&gt;I want to make it round down or up like for example:&lt;/P&gt;&lt;P&gt;Length is above 2500 and it rounds to 3030 and if under, it rounds to 2030.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried following formula, but can't get it to work:&lt;/P&gt;&lt;P&gt;IF (Length&amp;lt;2500, IF true, Length = 2030, IF false, Length = 3030)&lt;/P&gt;&lt;P&gt;IF (Length&amp;lt;2500, Length = 2030)&lt;/P&gt;&lt;P&gt;IF (Length &amp;lt;2500, Length = 2030) IF (Length &amp;lt;2500, Length = 3030)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;CL&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:39:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858435#M51676</guid>
      <dc:creator>cklLJAHD</dc:creator>
      <dc:date>2023-03-30T08:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858454#M51677</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13705102"&gt;@cklLJAHD&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The IF condition follows this structure :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;IF(&amp;lt;condition&amp;gt;, &amp;lt;result if condition is true&amp;gt;, &amp;lt;result if condition is false&amp;gt;)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So for your issue, it would look like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;IF(Length &amp;lt; 2500, 2030, 3030)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because your condition is "Length &amp;lt; 2500", if the Length is actually inferior 2500 then the Length parameter&amp;nbsp; should be 2030 otherwise, it would be 3030.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT :&lt;/P&gt;&lt;P&gt;Forgot to note that you should use a second parameter for your test as you cannot self reference one. So you need to have :&lt;/P&gt;&lt;P&gt;- Length for your input&lt;/P&gt;&lt;P&gt;- LengthCondition (or name it whatever you want) for the formula&lt;/P&gt;&lt;P&gt;It's the LengthCondition that should be the label of the dimension in your object.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:19:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858454#M51677</guid>
      <dc:creator>MetalFingerz</dc:creator>
      <dc:date>2023-03-30T08:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858456#M51678</link>
      <description>&lt;P&gt;For the process, You should use some sub-parameters, yes no parameters. You can control the links. Or you can send the family I try to write the formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-mep-forum/if-then-formula-and-quot-yes-no-quot-parameter/td-p/2662720" target="_blank"&gt;https://forums.autodesk.com/t5/revit-mep-forum/if-then-formula-and-quot-yes-no-quot-parameter/td-p/2662720&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/RVT/2020/ENU/?guid=GUID-A0FA7A2C-9C1D-40F3-A808-73CD0A4A3F20" target="_blank"&gt;https://help.autodesk.com/view/RVT/2020/ENU/?guid=GUID-A0FA7A2C-9C1D-40F3-A808-73CD0A4A3F20&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the explanation and links above help, please close the case as answered, if the problem still persists, I expect you to share more details with me.&lt;/P&gt;&lt;P&gt;I wish you good work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fulden Yılmaz MSc. Architect - BIM Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.linkedin.com/in/fuldenyilmaz/" target="_blank" rel="noopener"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:13:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858456#M51678</guid>
      <dc:creator>FuldenYilmaz</dc:creator>
      <dc:date>2023-03-30T08:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858523#M51679</link>
      <description>&lt;P&gt;It simply states that: 'There is c&lt;SPAN&gt;ircular chain of references among formulas'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have edited the post to include the files.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:38:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858523#M51679</guid>
      <dc:creator>cklLJAHD</dc:creator>
      <dc:date>2023-03-30T08:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858527#M51680</link>
      <description>&lt;P&gt;I have attached the files, since I am not entirely sure what to do since this is the first time using several formulas.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:40:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858527#M51680</guid>
      <dc:creator>cklLJAHD</dc:creator>
      <dc:date>2023-03-30T08:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858568#M51681</link>
      <description>&lt;P&gt;I wrote and uploaded, I hope it is okey.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if you have more questions on this topic, otherwise please accept as a solution so that others can benefit from this information.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fulden Yılmaz MSc. Architect - BIM Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.linkedin.com/in/fuldenyilmaz/" target="_blank" rel="noopener"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:54:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11858568#M51681</guid>
      <dc:creator>FuldenYilmaz</dc:creator>
      <dc:date>2023-03-30T08:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Parametric Family - Formula</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11859271#M51682</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13705102"&gt;@cklLJAHD&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;It simply states that: 'There is c&lt;SPAN&gt;ircular chain of references among formulas'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have edited the post to include the files.&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You need to follow &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3754892"&gt;@MetalFingerz&lt;/a&gt; post more closely, as that is the solution.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 13:04:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/parametric-family-formula/m-p/11859271#M51682</guid>
      <dc:creator>mhiserZFHXS</dc:creator>
      <dc:date>2023-03-30T13:04:44Z</dc:date>
    </item>
  </channel>
</rss>

