<?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 Re: Checkbox conditional statement in Revit Architecture Forum</title>
    <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/12312263#M311250</link>
    <description>&lt;P&gt;There is one more method for selecting one of many conditions, as many as you like.&amp;nbsp; In this case, I want the disconnect handle on this family to disappear and to size the box as required for many conditions, and I could add many more to it.&lt;/P&gt;&lt;P&gt;In this case I made three and I hope this gives users a good start to do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Oct 2023 18:01:00 GMT</pubDate>
    <dc:creator>Jboone4HV2J</dc:creator>
    <dc:date>2023-10-17T18:01:00Z</dc:date>
    <item>
      <title>Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311024#M311244</link>
      <description>&lt;P&gt;So, im trying to make check boxes affect other check boxes. Im rubbish at programming, but I decided to take a shot at it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Working With 3 check boxes, key plan A, key plan B and key plan&amp;nbsp;I tried to write out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IF(OR(KEY PLAN A ,KEY PLAN&amp;nbsp;B)=Yes, Yes,No)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does revit not recognize yes/no as the outcomes of a yes/no checkbox? Is there a way to check and uncheck a box like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The overall outcome I want is if KEY PLAN A or KEY PLAN B are checked, to also check KEY PLAN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/237312iDEE75507BB25AB65/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Key plan.JPG" title="Key plan.JPG" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 20:52:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311024#M311244</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-05T20:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311056#M311245</link>
      <description>&lt;P&gt;This &lt;A title="Check it out" href="http://www.revitforum.org/tutorials-tips-tricks/1046-revit-formulas-everyday-usage.html" target="_blank"&gt;thread at RFO&lt;/A&gt; is an excellent resource, a great deal of formulaic solutions are stored there. Go to the very first post in the thread for a long summary of different formula techniques. The rest of the thread is a run-on series of questions and answers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The counter-intuitive part of Yes/No formula syntax is that it assumes a true result. Turning off one Yes/No parameter based on another would look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Parameter: CheckA - its formula is: Not(CheckB)&lt;/P&gt;&lt;P&gt;Parameter: CheckB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If user clicks CheckB (a yes) then CheckA turns off automatically. If CheckB is not checked then Check A is checked automatically. The user only has to interact with CheckB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dealing with more than two Yes/No parameters and evaluating them is more complicated and there are a few IF conditional approaches in the thread I linked to above.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 21:10:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311056#M311245</guid>
      <dc:creator>SteveKStafford</dc:creator>
      <dc:date>2016-05-05T21:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311448#M311246</link>
      <description>&lt;P&gt;In your case a simple OR will do. OR(A, B)&lt;/P&gt;
&lt;P&gt;&lt;IMG title="OR.png" alt="OR.png" src="https://forums.autodesk.com/t5/image/serverpage/image-id/237381iDBDDC2220221F06D/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This also goes to true if if both A and B are true. You would have to change the formula if you do not want&amp;nbsp;C to be true if that is the case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="OR2.png" alt="OR2.png" src="https://forums.autodesk.com/t5/image/serverpage/image-id/237382i69F5652657062777/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2016 05:36:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/6311448#M311246</guid>
      <dc:creator>L.Maas</dc:creator>
      <dc:date>2016-05-06T05:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10706632#M311247</link>
      <description>&lt;P&gt;How would you go about having 4 checkbox where only one of them can be picked, automatically turning off the others?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:43:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10706632#M311247</guid>
      <dc:creator>rachelthornton1973</dc:creator>
      <dc:date>2021-10-22T12:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10706732#M311248</link>
      <description>&lt;P&gt;You can use an integer parameter input to control the checkboxes. Enter the formula for checkbox 1: integer input = 1.&amp;nbsp; Similar for the other 3.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 13:19:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10706732#M311248</guid>
      <dc:creator>ToanDN</dc:creator>
      <dc:date>2021-10-22T13:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10707663#M311249</link>
      <description>&lt;P&gt;Hi and thanks for the reply, doesn't that just completely negate the idea of them selecting one of the 3 the checkboxes? just replaces that with "Pick a number"? but they have no way of knowing what the number relates to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With checkboxes i can name them anything descriptive:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☑&lt;/SPAN&gt;&amp;nbsp;- Option A&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☒ - Option B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☒ - Option C&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☑&lt;/SPAN&gt;&amp;nbsp;- White Finish&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☒ - Terracotta Finish&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;☒ - Beige Finish&lt;BR /&gt;&lt;BR /&gt;etc etc.&lt;BR /&gt;&lt;BR /&gt;From all the reading I've done, Revit pretty much only lets you check two checkboxes&amp;nbsp;against each other? why after 10 yrs or more are the most basic functionalities not included in this software? drives me nuts &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Was hoping there was some way of doing it but seems may people have struggled to get this to work, so guessing&amp;nbsp;im joining them in the "Maybe one day it will come" crowd :S&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 20:14:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/10707663#M311249</guid>
      <dc:creator>rachelthornton1973</dc:creator>
      <dc:date>2021-10-22T20:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/12312263#M311250</link>
      <description>&lt;P&gt;There is one more method for selecting one of many conditions, as many as you like.&amp;nbsp; In this case, I want the disconnect handle on this family to disappear and to size the box as required for many conditions, and I could add many more to it.&lt;/P&gt;&lt;P&gt;In this case I made three and I hope this gives users a good start to do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 18:01:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/12312263#M311250</guid>
      <dc:creator>Jboone4HV2J</dc:creator>
      <dc:date>2023-10-17T18:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox conditional statement</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/12312293#M311251</link>
      <description>&lt;P&gt;Getting a larger view of finished family we have something that looks like this.&lt;/P&gt;&lt;P&gt;I only used this so I can put connectors on a box that I can slap on a model and connect conduits to it.&amp;nbsp; Someone else designed the electrical and I finish the model off with more detailed electrical items.&amp;nbsp; This is just one of many tricks.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 18:16:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/checkbox-conditional-statement/m-p/12312293#M311251</guid>
      <dc:creator>Jboone4HV2J</dc:creator>
      <dc:date>2023-10-17T18:16:55Z</dc:date>
    </item>
  </channel>
</rss>

