Owner Category
Not Started

Challenge

Create a formula field, Owner Category on Case that determines if a Case record is owned by a User or a Queue. Use the OwnerId value to determine this.


Create the following field on ```Case```:

Field Type: Formula (Text)
Field Label: Owner Category
Field Name: Owner_Category
Description: Determines if the owner of the record is a user or a queue


Example Scenarios:

Scenario 1:

Input: OwnerId = 005bm0000038ZCfAAM
Result: Owner_Category__c = "User"
Explanation: 005bm0000038ZCfAAM is a user id.

Scenario 2:

Input: OwnerId = 00Gbm000003hHn3
Result: Owner_Category__c = "Queue"
Explanation: 00Gbm000003hHn3 is a queue id.