You need to sign in to do that
Don't have an account?

Hide formula field text if picklist if not null
Ok so i have a formula field that is pulling the address infromation from the contact into the field. What i am trying to do is that if my 3rd party shipping picklist value is null (meaning nothing choosen) then the text will show, but if a selction has been made that the formula field shows in text. Does anyone think this is possible.
This is what i have but not seeming to work
This is what i have but not seeming to work
AND( ISPICKVAL(X3rd_Party_Shipper__c = "", "", if(LEN(Contact__r.OtherStreet)>0, Contact__r.OtherStreet& " " , "" ) & BR() & if(LEN(Contact__r.OtherCity)>0, Contact__r.OtherCity& ", " , "" )& if(LEN(Contact__r.OtherState)>0, Contact__r.OtherState& " " , "" )& if(LEN(Contact__r.OtherPostalCode)>0, Contact__r.OtherPostalCode,"") & BR() & If(LEN(Contact__r.OtherCountry) >0, Contact__r.OtherCountry,"")))
All Answers
Once i removed the (!) in the if statement it did just what i needed. Thanks so much...
Ivan
Parker