Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Guys,
I have the following expression:
" =if(Age>=vExp_Age_Dwn and Length>=vExp_Len_Dwn ,if(Age<=vExp_Age_Up and Length<=vExp_Len_Up ,Name))
It works fine but as I want to include more components I would like to make it a little less messy. Any advice on best practises on how to cut up expressions?
You might be able to use Set analysis to make it simpler
you can do like this:
=if((Age>=vExp_Age_Dwn and Age<=vExp_Age_Up) and (Length>=vExp_Len_Dwn and Length<=vExp_Len_Up),Name))
remove 1 bracket after Name Field