
Yes you can do this by using SelectList on your custom visual force page. Get all records by Querying Obj1 in controller and add those record values in selectlist. Now you can show this selectlist on page.
Full Answer
Is it possible to have multi select picklist in Salesforce?
In salesforce, Picklist cannot have more than one value selected at a time. Because a single field cannot have more than one value at given point of time. So your requirement of "Multi Select Picklist" is not possible. Your requirement is not clear at all.
How to create country picklist in Salesforce?
Picklist is a field type in which it allows to contain values and pick one value. Steps to create Picklist. Setup => Build => Create => Objects => Custom field ans Relationships => New => Picklist Now we are creating picklist for Country and Continent. Enter the details as given below for Country Picklist. Enter the country names.
How to create custom fields and relationship in Salesforce?
In the object manager page, scroll down and click the created our custom object name from the object list. In our created custom object page, click the “Fields & Relationship” option from the left side pane. Next, in fields and relationship pages our predefined fields are listed.
Can picklist have more than one value at a time?
In salesforce, Picklist cannot have more than one value selected at a time. Because a single field cannot have more than one value at given point of time. So your requirement of "Multi Select Picklist" is not possible.
How to tie multiple references to a record?
Can you have custom objects in salesforce?
Can you have multiple references in one field?
Can you have more than one picklist in Salesforce?
See more
About this website

How do I change a picklist to a lookup field in Salesforce?
You can't covert directly from Picklist to lookup field out of the box. You need to create a different lookup field and if you are thinking of translating the picklist data to lookup then you have to write some custom code to handle it.
What is the difference between picklist and lookup?
Picklists are physically different from database lookup fields since there is no foreign key relationship between the tables. The application generator automatically configures lookup fields. Developers can configure a picklist on any field in a web application.
How do I add a picklist field to a formula field?
Use Picklist Fields in FormulasIn Setup, use the quick find box to find the Object Manager.Click Case | Fields & Relationships and click New.Select Text Area and click Next.In Field Label, enter Reason for Escalating. Field Name populates automatically.Click Next.Click Next again and then click Save.
Can we use picklist field in formula Salesforce?
A picklist field lets you choose a value from a pre-populated list. While you can't write a formula that returns a picklist as a result, you likely have to reference picklists in your formula fields.
Can a lookup field be a dependent field in Salesforce?
You cant have a dependent picklist based on a lookup field.
How do I create a dependent lookup in Salesforce?
Required Editions and User Permissions A dependent lookup is a relationship field with a lookup filter that references fields on the source object. For example, you can configure the case Contact field to only show contacts associated with the account selected in the case Account Name field.
How do I use multiple picklist values in a formula field in Salesforce?
Create a formula that shows the value of a multi-select picklist from a parent to a child objectGo to the object where you want to create the field. ... Click New.Select Formula for the Data Type.Name the field and select Text for the Formula Return Type.Click Next.Enter your formula syntax.
What is dynamic picklist in Salesforce?
Overview. Dynamic Picklists are multiple-choice questions that get their list of choices directly from Salesforce. Values are populated from Salesforce when the form loads, so the choices in your picklist always stay current without having to refresh the schema.
How do I use a Priorvalue function in Salesforce?
Get Prior Value of Formula Field in SalesforceCreate a custom field to store the prior value.Create a New Workflow with criteria of Created and every time it's edited. ... Select the field update action and update the custom field value using the priorvalue(Your Formula Field) as shown below -Activate the workflow.
How many values can a picklist have in Salesforce?
1,000 activeLimits for Custom Picklists Unrestricted picklists have a limit of 1,000 active values, and bound unrestricted picklists have a limit of 4,000 inactive values.
What is multi select picklist in Salesforce?
Multi-Picklist fields allow you to select multiple values on your records for various use cases. You have the ability to define values on creation of the field and after creation you can continue to add and remove other values.
How do I create a global picklist?
From Setup, enter Picklist in the Quick Find box, then select Picklist Value Sets.Next to Global Value Sets, click New.Enter a label for the global value set. ... To tell users what these values are for, enter a specific description of the global value set. ... Enter the values, one per line.More items...
Formula Field for Multi select picklist - Salesforce Developer Community
I would suggest making a use of INCLUDES(multiselect_picklist_field, text_literal) function in salesforce. This is what it does: INCLUDES(multiselect_picklist_field, text_literal)
Multi records selection from lookup in salesforce using apex
Hi All, I want multi select record selection for lookup results and whatever I selected records I want to save it in related list. How can I do this.
One lookup field for Multiple Objects - Salesforce Stack Exchange
Requirement: To track tickets in Salesforce using Case object.So if users have issues in Salesforce they would create a Case. Example: If a user has an issue with an Account record -> they would create a Case - put in the description of the issue, but we want the user to attach the record, in this case, an account record to the case using a lookup so that we track the tickets back to the record.
Create multiselect lookup in salesforce using apex - Stack Overflow
For adding multiple junction objects at one time, the only solution we have found is a custom Visualforce page, as described by LaceySnr. For a slightly different problem, where we need to assign many of object B to object A, We have trained our users to do this with a view on object B.
What is Salesforce Stack Exchange?
Salesforce Stack Exchange is a question and answer site for Salesforce administrators, implementation experts, developers and anybody in-between. It only takes a minute to sign up.
Can you create fields in apex?
First of all, dynamic creation of fields in an object, even using apex, is not possible. On top of that, there's a limit of lookup fields that you can have per object, then I'm sure you don't want that.
What is a picklist field?
A picklist field lets you choose a value from a pre-populated list. While you can’t write a formula that returns a picklist as a result, you likely have to reference picklists in your formula fields. Say you need a validation rule that requires a user to fill out an explanation if they select "Other" as an Account’s Type.
Can you use TEXT in a picklist?
This formula, for example, displays a case’s Status as a sentence. You cannot use TEXT () on multi-select picklists. Multi-select picklists are not recommended in formula fields.
Does the equals operator work in picklist?
The equals operator (=), however, does not support picklist fields, and this formula causes an error. Instead, use ISPICKVAL () to check a picklist field’s value, or use TEXT () to convert a picklist value to Text before using the equals operator.
What is a picklist in salesforce?
In salesforce also the description is same Picklist allows to contain multiple values and pick One among them or Multiple among them. Picklist Characteristics. Picklist values are Static and can not defined dynamically. Picklist values are maintained by Administrator. Picklist values are displayed as drop down ...
How many characters can be in a custom picklist?
Custom Picklist can have 1,000 entries and 255 characters per entry .
Is a picklist dynamic?
Picklist values are Static and can not defined dynamically.
Does Picklist Vales have any other data?
Picklist vales does no have any other associated data.
What is picklist data type?
The picklist data type field contains much of the data available on the list. But users can select any one of the data from the list. For example, (Gender)
Where is the field and relationship option in a custom object?
In our created custom object page, click the “Fields & Relationship” option from the left side pane.
How to create a new field data type page?
We are already creating a new field data type page. Step 1. Select the “Picklist (Multi-Select)” radio button and then click the “Next” button. Step 2. In the details page, enter all the required fields, follow previous picklist creating (step 8) and click the “Next” button. Step 3.
How to search for an object name in App Launcher?
App launcher pop-up window will be opened, search our created object name in the search box, then click the object name.
Can picklists be created in Salesforce?
We have successfully created both picklist and picklist multi-select data type fields in Salesforce.
How to tie multiple references to a record?
The only way to tie multiple references to a record is to have multiple lookups referring to the required object.
Can you have custom objects in salesforce?
In salesforce standard objects cannot be in the detail side. They are always the Master object. The custom objects can be in the detail side. So what is your first object? Is it standard or custom?
Can you have multiple references in one field?
I dont think its possible to tie multiple references of an object with a single field unless if you decide to go with complete customization.
Can you have more than one picklist in Salesforce?
Here is my understanding:-. In salesforce, Picklist cannot have more than one value selected at a time. Because a single field cannot have more than one value at given point of time. So your requirement of "Multi Select Picklist" is not possible. Your requirement is not clear at all.
