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

Hide fileds if no value
Hi All,
I m very new to salesforce and I m wondering if there is a way to hide custom fileds on custom Objects if there is no value entered in them?
Thanks,
I m very new to salesforce and I m wondering if there is a way to hide custom fileds on custom Objects if there is no value entered in them?
Thanks,
where do you want to hide the fields ?
like when you are entering the record details or after saving the record. ?
Regards
Anji
After save. So I would like the field to behave like so: be visual on the Custom object display if there is value entered in the filed and not visual if there was no value entered into the field.
Thanks in advanced
You need to use 'Visualforce page' to achieve it in the Salesforce.
For example:
<apex:outputField rendered="{!IF(ISBLANK(Object__c.Field__c),false,true)}" value="{!Object__c.Field__c}"/>