Revit MEP Forum
Welcome to Autodesk’s Revit MEP Forums. Share your knowledge, ask questions, and explore popular Revit MEP topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

WHILE loop?

1 REPLY 1
SOLVED
Reply
Message 1 of 2
revitworkbench
454 Views, 1 Reply

WHILE loop?

Can you do while loops in revit? If not, how do you track three variables? For example If 10<20, and 20<30, then C=1. the only problem is that C can have 4 values and logically can have more t...
1 REPLY 1
Message 2 of 2
CoreyDaun
in reply to: revitworkbench


michaelmead wrote:
"Can you do while loops in revit? If not, how do you track three variables? For example If 10<20, and 20<30, then C=1. the only problem is that C can have 4 values and logically can have more than one correct value based on the values of A and B...? any programers out there? Thanks!"

 

A while loop is not possible within Revit's... less than stellar formulaic abilities. You can use a series of nested IF/THEN/ELSE statements. For example, this formula defines the Integer Value of "ParamC" based on the values of "ParamA" and "ParamB":

 

if(and(ParamA>20, ParamB>20), 35, if(and(ParamA<20, ParamB>20), 25, if(and(ParamA<20, ParamB<20), 15, 5)))

 

This formula checks the conditions and returns the results as listed below:

 

          IF AND...             THEN…
"ParamA" "ParamB"    "ParamC"=
   >20           >20                35
   <20           >20                25
   <20           <20                15
None of the above              5

 

Hope that helps!

Corey D.                                                                                                                  ADSK_Logo_EE_2013.png    AutoCAD 2014 User  Revit 2014 User
──────────────────────────────────────────────────────────────────────
⁞|⁞ Please use Mark Solutions!.Accept as Solution and Give Kudos!Give Kudos as appropriate to further enhance these forums. Thank you!

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report


Autodesk Design & Make Report