Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
I have a text parameter I'm trying to manipulate using formulas. However, I'm having some struggles.
What I am trying to accomplish, simplified, is:
If Height < 38" and Depth < 24" = "LE1"
If Height > 38" and Depth < 24" = "LE2"
If Height > 38" and Depth > 24" = "LE3"
I attempted this by using the following formulas:
IF ( AND (Depth < 2’, Height < 3’ 2”), “LE1”, (IF ( AND (Depth < 2’, Height > 3’ 2”), “LE2”, “LE3”)))
&
IF (Depth < 2', "LE2", IF (AND (Depth < 2’, Height <3’ 2”), “LE1”, “LE3”))
Neither of these worked for me and I am unsure why.
Thank you for any help you can provide!
Solved! Go to Solution.