Follow Up

Only create this for orgs that are going to use Tasks. I hate tasks, so check out Action Views, Tasks and Report Alerts for some alternatives. But some people like tasks, so this is a quick way to get them to add a follow up task. I create these for each object that is requried, rather than Global so that the related to is prefilled. And you can still use this to create regular tasks just by changing the values. 

The settings

The Predefined Field Values - Due Date Today()+2 - change it to what ever works for your org. 

The Layout - everything except what is likely to be changed is deleted. 


The end result

Mini Field Details Panel

Create an Action

Use Cases

Rarely used fields

Rather than have a different page layout for 3 fields on a different Record Type, add those three fields to an Action and RRC, and then create a formula field as to when they should be displayed, and have that RRC display only when it's needed. 

Eg, in this Case SLA fields - only show if the Account has an SLA. 

Fields only displayed at certain stages

In the old days, you had to create a Record Type and a page layout, and then do a workflow field update to change the page layout to match the record type if a Stage changes that needs additional fields. Now with a Conditional RRC, you don't need that anymore. It's probably only a bit less set up work, but I hope easier to maintain in the long run. 

Eg, in this case, only show the Report Hyperlinks if the Status is Complete. 

HYPERLINK("#/sObject/00OB0000001cGVQMA2/view?fv0=" & Id, "Report Hyperlink")

Buttons, Indicators, and Emojis!

Buttons and visual indicators are a great way of highlighting key details on a page.

Yes, you can highlight key fields in the Compact Layout, but as the Compact layout is next to useless, and apparently not going to change (as per a comment from one of the Salesforce people at the Lightning Now tour last year) you are going to probably want a more flexible approach. 

So spice up your pages with key visual fields that really mean something to your users, and allows them to see at a glance what is happening. 

Examples

Emoji

IF(ISPICKVAL(Industry,"Agriculture"), "🥑",IF(ISPICKVAL(Industry,"Consulting"),"💩","🐵"))

(yeah, it's not a good formula, but you get the idea, you just copy and paste Emojis in instead of text). Notice the bug on the layout that shifts the last field over a bit.
 

Progress Bar

IMAGE("/resource/Colours/green.png","png",10,((100/60)*50)) & 
IMAGE("/resource/Colours/neutral-2.png","neutral",10,((100/40)*50)) & 
" 40%"

Of course replace the numbers with fields. 50 is the width in pixels. Replace the Text with the field value as text also. 

Thanks to Christian Carter for this idea and the great colour swatches. 

Button

IMAGE("http://dabuttonfactory.com/button.png?t=" & TEXT(Ownership) &"&f=Open+Sans-Bold&ts=14&tc=fff&hp=16&vp=8&c=5&bgt=unicolored&bgc=0070d2&bs=1&bc=569",TEXT(Ownership))
Thanks to Christian Carter for working out the buttons that look good on Lightning. But this might look too much like an actual button, so maybe change the colour. 
Shield

IMAGE("https://img.shields.io/badge/NAME-STATUS-NULL.svg?style=flat-square&colorB=0070d2","Image")

Thanks to Christian Carter for showing me the wonderful things you can do with Shields. 

Indicators

IF(ISPICKVAL(Industry,"Agriculture"), IMAGE( "http://dabuttonfactory.com/button.png?t=AG&f=Calibri-Bold&ts=25&tc=fff&w=60&h=60&c=5&bgt=unicolored&bgc=fec10d", "Agriculture"), 
IF( ISPICKVAL(Industry,"Consulting"), IMAGE( "http://dabuttonfactory.com/button.png?t=CON&f=Calibri-Bold&ts=25&tc=fff&w=60&h=60&c=5&bgt=unicolored&bgc=003e7e", "Consulting"), Null))

Or take just the first two or three chars from the Picklist value.

IMAGE("https://login.salesforce.com/logos/Standard/goals/logo.svg", "Goal!", 60, 60)

This is taken from the great work from Christian Carter and Beth Briesnes on the Weather Vane app.
Numbers

https://dabuttonfactory.com/button.png?t=15&f=Calibri-Bold&ts=60&tc=0f0&hp=0&vp=0&c=0&bgt=unicolored&bgc=fff
Kitchen Sink

Or Display Everything all at once! No don't, really, please don't. 

Where to get Images

Oh, and you can show images in List Views in Lightning Now. But don't! 

Show Image on a Page

I have a record named Asset, and the Assets are all part of a group of Assets - the Asset Catalog. The Asset Catalog has an image field - just a Rich Text field where they paste the image in there (yeah, I could do a URL and a VF page to show it, but I just wanted it easy for them to get the images in there). 

When they are working on the Asset, I want them to quickly see an image of it, so they know at a glance it is the right asset. 

So, how do I show a Lightning Component with just one field on it. A Related Record Component. 

Setup

Drawbacks

End Result

Now new in Winter 18, this can just be a formula field - eg a URL of a Logo or Photo of the person. 

IMAGE("https://developer.salesforce.com/resource/images/trailhead/offers/Astro+with+badge.png","Astro with Badge")

Yes, this is just a static image in the formula, but add a URL field and it becomes

IMAGE(URLField__c,"Label")