Various alerts or visualizations can be configured on a student record layout to bring important indicators of success or risk to the forefront for counselors and advisors in Retention. These visualizations drive important and timely communications, business processes, or student initiatives and programs.
These are built through formula fields, so they can reference different fields and values indicating whether the student is in green or red flag territory. Consider the markers that are valuable for your advisors to see and what would be possible with your data.
Alerts can be configured as visualizations on a student record layout to bring important indicators of success or risk to the forefront for counselors and advisors.
Salesforce includes a variety of icons available for use in alerts, including:
For more information, see Salesforce's Help and Training article Sample Image Link Formulas.
You can create your own Custom images to be used in formulas as well - such as:
Custom
For more information, see Salesforce's Help and Training article Using images in Formula Fields.
An example of a formula that converts a field to a standard image available by default in Salesforce:
IF(MidTerm_Grades_Below_Avg_RollUp__c > 1,
IMAGE("/img/samples/flag_red.gif", "Red-Flag"),IMAGE("/img/samples/flag_green.gif", "Green-Flag"))
The ability to track, record, and set indicators is fundamental to an institution's success strategy. The key to achieving the goals of a student success & retention strategy on campus is the ability to provide follow-up and support to a student in need. Student information on Academic Profiles and Academic Snapshots makes it easy to report on a current student's role and quickly identify "at-risk" students and other relevant information.
Various Alerts or Status Indicators are available to quickly identify 'at-risk' students and other relevant information.
A custom field, such as Academic_Status__c, can display color-coded indicators related to Academic factors - red, yellow, or green- based on each institution's definition.
For example:
IF(GPA__c <= 2.0, IMAGE("/img/samples/light_red.gif", "Red"),
IF(GPA__c > 2.0 && GPA__c < 3.0, IMAGE("/img/samples/light_yellow.gif","Yellow"),
IF(GPA__c >= 3.0, IMAGE("/img/samples/light_green.gif","Green"),NULL)))
A custom field, such as Attendance_Status__c, can be configured to display color-coded indicators related to Attendance - red, yellow, or green based on each institution's definition.
For example:
IF( Total_Absences_SUM__c >= 10.0, IMAGE("/img/samples/light_red.gif", "Red"),
IF( Total_Absences_SUM__c >= 3.0 && Total_Absences_SUM__c < 10.0 , IMAGE("/img/samples/light_yellow.gif","Yellow"),
IF( Total_Absences_SUM__c < 3.0, IMAGE("/img/samples/light_green.gif","Green"),NULL)))
A custom field, such as Enrollment_Eligibility__c, can be configured to display color-coded indicators related to Enrollment factors - red, yellow, or green- based on each institution's definition.
For example:
IF( Number_of_Holds_Recent__c > 0 || Cumulative_GPA_Formula__c < 2.4, IMAGE("/img/samples/light_red.gif", "Red"),
IF( Number_of_Alerts_Recent__c > 1 || Cumulative_GPA_Formula__c < 3.0, IMAGE("/img/samples/light_yellow.gif","Yellow"),
IF( Cumulative_GPA_Formula__c >= 3.5, IMAGE("/img/samples/light_green.gif","Green"),NULL)))
A custom field, such as Class_Level_Formula__c, can display a student's class level based on the institution's definition.
For example:
IF( Total_Credit_Hours_Earned__c > 0 && Total_Credit_Hours_Earned__c < 28, 'Freshman', IF( Total_Credit_Hours_Earned__c >= 28 && Total_Credit_Hours_Earned__c < 58, 'Sophomore', IF( Total_Credit_Hours_Earned__c >= 58 && Total_Credit_Hours_Earned__c < 90, 'Junior', IF( Total_Credit_Hours_Earned__c >= 90, 'Senior', NULL))))
Sample formula:
IF(<Name of Rollup field created on Contact Object>__c > 0,
IMAGE("/img/samples/flag_red.gif", "Red-Flag"),IMAGE("/img/samples/flag_green.gif", "Green-Flag"))
Note: Salesforce includes a variety of icons available for use in alerts. For more information, see Sample Image Link Formulas. You can create your Custom images to be used in formulas as well. For more information, see Using images in Formula Fields.
Alerts and Statuses can be configured to display as a visual badge or icon related to student details. For example, a Red flag could appear on a student's record if their attendance record does not meet institution attendance policies.
Define the Business Requirements for the 'Alerts' you want to track.
For each 'Alert,' capture the following information:
Recommended visual icons include:
Traffic Lights (Red, Yellow, Green)

Flags (Red, Yellow, Green)
![]()
![]()
![]()
Custom
What communications should occur when this Alert is raised?
For example, should an email alert or text be sent to the Advisor, the Student, or both?
Meet with your Systems Administrator to clarify the Business Requirements and review the options for implementing the ideal technical solution.
Once Step 1 is complete, implement the Alert.
Raise a 'Red Flag Alert' for first-year students enrolled in Foundation English (ENG 100) or Foundation Math (MTH 100) - when their midterm grade is C or below.
This flag should be cleared if the student's grade is C+ or above at the end of the semester.
IF(Alert_Foundation_Course_RollUp__c > 0,
IMAGE("/img/samples/flag_red.gif", "Red-Flag"),IMAGE("/img/samples/flag_green.gif", "Green-Flag"))
Display the 'Alert' on the Layout.
Note: The RollUp-Summary field is supporting. It can be added to the page layout if desired, i.e., Contact page, by adding the new formula field from Step #4 to your Contact Page, but typically will not be displayed.
Create a Workflow Email Alert, Broadcast Email, or SMS Text Message Campaign to communicate the 'Alert' - when desired.
Raise a Red Flag for first-year students who receive a midterm grade of C or below in Foundation English (i.e., ENG 100) or Foundation Math (i.e., MTH 100).
This Red Flag should be cleared if the student receives a Final Grade of C+ or above at the end of the semester.
Note: For more information on configuring Roll-Up Summary fields, see Implementing Roll-Up Summary Fields.
IF(MidTerm_Grades_Below_Avg_RollUp__c > 1,
IMAGE("/img/samples/flag_red.gif", "Red-Flag"),IMAGE("/img/samples/flag_green.gif", "Green-Flag"))
Raise a Red Flag for any student who demonstrates poor attendance
(based on institutionally-defined attendance policies).
This example is similar to Scenario #1 but would additionally require a RollUp-Summary field added to the Courses object (to summarize Course Attendance object records).