Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
Niveau 1
Niveau 2
Se connecter à la communauté
Connectez-vous pour voir tous les badges
Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
Les sujets facilitent la catégorisation du contenu de la Communauté et vous aident à retrouver le contenu le plus pertinent.
Vues
Réponses
Nombre de J’aime
Vues
Réponses
Nombre de J’aime
I've added these over the years for one reason or another... I think that having the calculation on the form enabled charts when building certain types of reports.
· Entry Date
· Entered by Name
· License Name
· Access Level Name
· Home Group Name
· Home Team Name
· Primary Job Role Name
· Last Updated Date
· Last Updated By
· Plan License Assigned IF(License="F", IF(ISBLANK(Plan License Assigned),$$NOW,Plan License Assigned),"")
· Work License Assigned IF(License="T", IF(ISBLANK(Work License Assigned),$$NOW,Work License Assigned),"")
Vues
Réponses
Nombre de J’aime
My favorite one is Manager Hierarchy. This shows you multiple levels of managers. You can then build reports for whole departments that are dynamic.
Here is the code:
CONCAT(IF(!ISBLANK(Manager),Manager),IF(!ISBLANK(Manager.Manager), ", "+ Manager.Manager),IF(!ISBLANK(Manager.Manager.Manager
), ", "+
Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
),IF(!ISBLANK(Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
), ", "+
Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager.Manager
))
Vues
Réponses
Nombre de J’aime
this is awesome. Did you ever figure out how to get the Active Layout Template calculated field in? On the report it looked like this:
IF(!ISBLANK({layoutTemplateID}),{layoutTemplate}.{name},IF(ISBLANK({layoutTemplateID})&&!ISBLANK({role}.{layoutTemplateID}),{role}.{layoutTemplate}.{name},IF(ISBLANK({layoutTemplateID})&&ISBLANK({role}.{layoutTemplateID})&&!ISBLANK({homeTeam}.{layoutTemplateID}),{homeTeam}.{layoutTemplate}.{name},IF(ISBLANK({layoutTemplateID})&&ISBLANK({role}.{layoutTemplateID})&&ISBLANK({homeTeam}.{layoutTemplateID})&&!ISBLANK({homeGroup}.{layoutTemplateID}),{homeGroup}.{layoutTemplate}.{name},"No Layout Template Applied"))))
I can't get a good translation for the Role.Layout Template.ID/Name part, and frankly, even leaving out that part, the rest of the calculation isn't working out too well. I got as far as the below before giving up.
IF(!ISBLANK(Layout Template.ID),Layout Template.Name), IF(ISBLANK(Layout Template.ID)&&!ISBLANK(Role.Layout Template.ID),Role ID.Layout Template.Name), IF(ISBLANK(Layout Template.ID)&&ISBLANK(Role.Layout Template.ID)&&!ISBLANK(Home Team.Layout Template.ID),Home Team.Layout Template.Name), IF(ISBLANK(Layout Template.ID)&&ISBLANK(Role.Layout Template.ID)&&ISBLANK(Home Team.Layout Template.ID)&&!ISBLANK(Home Group.Layout Template.ID),Home Group.Layout Template.Name)
Vues
Réponses
Nombre de J’aime
Well, Kathy & I only put layout templates on individual users. It was too confusing to figure out who had what when you have some on individuals, some on roles, and some on teams.
So for me the field is just Layout Template.Name
Sorry I can't be much help with that.
Vues
Réponses
Nombre de J’aime
Hello @Skye Hansen,
Does your Text Mode Code cover the "Assigned To > Home Group Name" (not ID) on an Assignment based Report? If so, are you able to share the Text Mode Code with me? Thanks for your time.
Vues
Réponses
Nombre de J’aime
hi Seth, I'm not sure, are you very new to reporting? Maybe your understanding of the above conversation is unclear -- if so, the crucial elements are in Anthony's response: this is a calculated field we put on a custom form to attach to the user. The calculation is just "Home Group.Name". And then in a report, this is no other text mode needed. You simply group by your calculated field rather than by the Home Group ID.
Vues
Réponses
Nombre de J’aime