Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to get a door to show two values depending on the occupant load (Count). I have an equation that gets me the required door width but since the minimum is 32" I need to say 32 unless it is larger.
If the occupant load Required Width requires less than 32" I want it to say 32.
If the occupant load Required Width requires more than 32" I want it to say the value
(Count * Factor) is the calculation for our Required Width
If ((Count * Factor) < 32 , 32 , IF (Count * Factor) > 32, (Count * Factor))
I don't know if I am doing too much in one equation or just not getting my statement correct. I have made this work with windows before but it has been awhile.
Does this make sense?
Solved! Go to Solution.