simplify complex data with dynamic image formulas by chandler anderson

17
Simplify Complex Data with Dynamic Image Formulas Use Icons to Empower Users [email protected] @chanderson90 Chandler Anderson Business Analyst & Cloud Systems Admin

Upload: salesforce-admins

Post on 22-Jan-2018

81 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Simplify Complex Data with Dynamic Image Formulas

Use Icons to Empower Users

[email protected]

@chanderson90

Chandler Anderson

Business Analyst & Cloud Systems Admin

Page 2: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Forward-Looking Statements

Statement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any

of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking

statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or

service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for

future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts

or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our

service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth,

interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible

mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our

employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com

products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of

salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most

recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information

section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not

be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available.

Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Who is this Chandler guy?Like from Friends?

Full-time system administrator for DigitalGlue, a video

production and broadcast systems integration firm.

Based in Atlanta, Georgia.

Salesforce admin and developer for 2.5 years.

Passed ADM201 at Dreamforce last year.

Also works with Slack, Google Apps for Work, ect.

Freelances; currently implementing cloud software for

a SoCal-based startup.

Avid music nerd and pop culture junkie.

Page 4: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Prince!!!Waiting Priority (Low-Medium-High)

Can you guess the icon meanings?

A little exercise…

Page 5: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Can you picture this…

Admins are responsible for presenting users with all the data they need to do

their jobs.

As an Admin, your duty is to understand your users and

make Salesforce work for them.

BUT….

Ingredients of Salesforce success…

Users just want a straightforward interface with simple data entry and easily

digestible bits of information.

How do you do both well?

Page 6: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Creates unified visual

language across org.

Pictures speak louder

than words! Say more

with less.

Visually appealing.

Let Salesforce guide

users to success.

How about icons?How do they help users?

Page 7: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Case Status Action Indicator Hours Until/Since X

Can or can’t I do

something? What needs to

be done before I do X?

Don’t do work!

Review fields next

Display relative time in a

way that is eye-catching.

1 hour

6 hours

Overdue

How is a case doing? Are

we waiting on a response?

Is it closed out?

Open

Pending

Closed

Some awesome use cases…

Page 8: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Making an IconHow do you do it?

Page 9: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Before making an icon field…

What is the purpose of the icon? What

information are you trying to convey?

Should the criteria for the shown icon be set

manually by users or automatically by

formula?

How should you logically group data to be

associated with a particular icon in a field?

…you should ask yourself:

Page 10: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

I use Icons8. THEY HAVE

ICONS FOR EVERYTHING!

SERIOUSLY!

Sample Image Link Formulas

Salesforce-provided URLs

Compfight

Dreamstime > Free Images

Or use Google or Flickr! But

make sure they are cleared!

(Creative Commons)

Or make your own!

Where do I get these “icons”?Lots of options out there…

Page 11: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

These records will contain the

references for image files

displayed by the Image

Formula.

To create it:

• Navigate to Build > Develop >

Static Resources in Setup.

• Create new Static Resource

record.

• Give it a name that follows a

naming convention. Ex.

IconCheckmark

• Upload your image. A 30x30

icon is recommended.

The Static ResourcesYour icons, in Salesforce.

Page 12: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Can be picklist or formula.

Picklists are changed

manually or by

workflows/processes

Formulas display text strings

based on criteria.

• Create a Text formula field

that shows specific text

depending on defined criteria.

• Use nested IF statements to

create logic.

The Criteria Field IF (

TEXT ( Status ) = 'Closed',

'',

IF (

( ( NOW() - LastModifiedDate ) * 24 ) < 1,

'Last Hour',

IF(

( ( NOW() - LastModifiedDate ) * 24 ) < 6,

'Last 6 Hours',

IF(

( ( NOW() - LastModifiedDate ) * 24 ) < 12,

'Last 12 Hours',

IF(

( ( NOW() - LastModifiedDate ) * 24 ) < 24,

'Last 24 Hours',

'Too Long'

)

)

)

)

)

Referenced by the Image Field.

Page 13: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

This field will display an

image via formula.

All you do is:

• Create a Text formula field.

• Use a CASE function to

select image based on

Criteria Formula.

• Use IMAGE functions to

reference the Static

Resources for the icons. Use

20 for both the width and

height.

The Image Field

IMAGE(

CASE(

[Criteria Field],

[Text String A], '/resource/[Icon A]’,

[Text String B], '/resource/[Icon B]’,

[Text String C], '/resource/[Icon C]’,

'' //for exceptions

),

[Criteria Field], //picklist fields need to be

inside a TEXT( ) formula.

20,

20

)

Your secret weapon.

Page 14: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Demo(this is the fun part)

Page 15: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

A few cool tips……and some tricks too

Have a naming scheme for your static resources & use them as view

filters.

• ex. IconHourglass or IconPriorityLow

Put multiple icons into one text formula field – useful if you are

limited on field columns in lists.

Take advantage of help text on fields. Explain icons in them.

Create a legend for each Image Field and have that legend

accessible via Custom Link on your page layout.

Page 16: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Q&AWhat are your thoughts?

Page 17: Simplify Complex Data with Dynamic Image Formulas by Chandler Anderson

Thank Y u