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

Can 1 custom button lead to 1 of 2 Visualforce pages
Hi-
I currently have a custom detail page button on a custom object that simply sends the person clicking the button to a PDF Visualforcef page. I just had to create a second Visualforce page that is similar but slightly different than the first one.
My question is, can I manipulate the custom button URL so that, if someone selects a value in a picklist field on the object, then 1 of the Visualforce pages is rendered. If a person selects a different picklist option in that picklist field, the other VF page is rendered.
Basically I need to use 1 custom button to send the user to 1 of 2 different VF pages, and the page they go to needs to depend on the picklist option chosen in a picklist field on the object.
Thanks
on the custom button, u can use "execute javascript " behaviour and content source "on click javascript" , where u can write if / else logic by using merge field to open a required page in modal dialog
Hi,
You can use the below sample code in the custom button url - /apex/{!IF( Account.Type== 'Customer' , 'VFPage1', 'VFPage2')}
where VFPage1 and VFPage2 are the two VF pages which are re-directed based on the Account Type picklist feild.
Hope this helps.
Thanks
Sureka