So I'm trying to generate a Zoning Floor Area column in my Area Schedule. I have defined gross areas on every level of my building including the Cellar. I created a project parameter for the gross area that is called "Included in FAR". For each Level, I have Provided a YES or a NO response to this created parameter. So for example if the Level is the Cellar, The Included in FAR is listed as NO. If the level is above grade, The Included in FAR is listed as YES. I then created a Zoning Floor Area Column with a formula as follows if(Included in FAR = NO, 0 SF, Area). Revit gives me an area that says that NO is not a valid schedule field. I know that the input is case sensitive and my Included in FAR contains either NO or YES (all caps). What exactly am I missing in the formula?
Solved! Go to Solution.
Tried both suggestions and it says "The following is not a valid schedule field: Included in FAR"
is " Included in FAR" the EXACT name of the YES/NO Parameter? Check for spaces or some other variations you may have made in the name.
Is it an Area Parameter?
What kind of Parameter is Area? Make this Parameter the same kind.
In order for the formula to work it must be of the same type, in the example you are wanting an AREA, there for your FAR needs to be area (you can use binary 0 for no and 1 for yes), then your formula will work .
Good luck.
Hope this helps
If "Included in FAR" is a YES/NO Parameter and the Evaluation Parameter (e.g. the IF Statement Parameter) is an Area Parameter and "Area" is an Area Parameter, then the Formula I posted in Message #2 will work.
Evaluation Parameter (Area Type) formula =if(not(Included in FAR), 0, Area) returns "0" SF if "Included in FAR" is not checked and returns whatever the SF value of "Area" is if "Included in FAR" is checked.
Can't find what you're looking for? Ask the community or share your knowledge.