- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
The result I'm working for is:
If multiple lenses are selected (via yes/no lens formula), return the multiple lens error.
If one lens is selected, return the detail number (1862-XXX).
If no lens is selected, return the no lens error.
I'm trying to combine these two formulas:
if(PTZ LENS, "1862-207", if(FIXED LENS, "1862-208", if(MULTI LENS, "1862-209", "ERROR-NO LENS SELECTED")))
if(PTZ LENS, FIXED LENS, if(PTZ LENS, MULTI LENS, if(FIXED LENS, MULTI LENS, "ERROR-MULTIPLE LENSES SELECTED)))
With this, I get unexpected end of expression
if(and(PTZ LENS, FIXED LENS, if(PTZ LENS, MULTI LENS, if(FIXED LENS, MULTI LENS, "ERROR-MULTIPLE LENSES SELECTED"))), if(PTZ LENS, "1862-207", if(FIXED LENS, "1862-208", if(MULTI LENS, "1862-209", "ERROR-NO LENS SELECTED")))
Thanks for any help.
Solved! Go to Solution.