function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Yogesh BiyaniYogesh Biyani 

Show some data in a card based on a field

I am looking for an way to present adhoc data based on a field value.  How can I do this? For e.g. when the country is UK, show the full country name United Kingdom, channel manager, sales rep for this region.

Currently this data is not is a record but we can either put this is a Custom Metadata or a Custom object.  
AnudeepAnudeep (Salesforce Developers) 
Custom Metadata would be a better approach. This implementation looks similar to state and country picklist implementation to me

Configure State and Country Picklists

You can also access the state and country picklist through Apex
 
Schema.DescribeFieldResult fieldResult = User.Countrycode.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
System.debug('Picklist::'+ple);
for( Schema.PicklistEntry f : ple){
System.debug(f.getLabel() +'::'+ f.getValue());
}

Let me know if it helps