I need a listing of which users are "Salesforce" versus which are "Salesforce Platform".
I've tried a custom field on the user object: TEXT(Profile.UserType)
but that only returns the following values: CsnOnly; Guest; Standard
and based upon the counts the "Standard" includes both my Salesforce and my Salesforce Platform users.
How can I break that out separately so I know which users hold which license ?
21 Antworten
I got it worked out....a custom formula field on the object that has this as the fomula:
Profile.UserLicense.Name
Thanks to @Nick_Whitney for replying to my tweet with this question !