Expand my Community achievements bar.

Join us LIVE in San Francisco on November 14th for Experience Makers The Skill Exchange. Don't miss out on this free learning event!
SOLVED

Report Showing Users with No Logged Hours?

Avatar

Community Advisor

Hi all, mental block here - I have an hour report for all active users grouped by user so I can see total hours logged by user, but what this wouldn't pull is any user that has ZERO logged time (ever, on any object). How can I pull this?

If this helped you, please mark correct to help others : )

1 Accepted Solution

Avatar

Correct answer by
Level 3

Hi Madalyn, 

 

I have to give credit to @Doug_Den_Hoed__AtAppStore   for this one that I have saved.  This is not an hour report, but a user report with the following to that will return any Users with no hours entered in the past 7 days (for example):

 

EXISTS:a:$$EXISTSMOD=NOTEXISTS

EXISTS:a:$$OBJCODE=HOUR

EXISTS:a:entryDate=$$TODAY-7d

EXISTS:a:entryDate_Mod=gt

EXISTS:a:ownerID=FIELD:ID

 

Hope this helps. 

 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 3

Hi Madalyn, 

 

I have to give credit to @Doug_Den_Hoed__AtAppStore   for this one that I have saved.  This is not an hour report, but a user report with the following to that will return any Users with no hours entered in the past 7 days (for example):

 

EXISTS:a:$$EXISTSMOD=NOTEXISTS

EXISTS:a:$$OBJCODE=HOUR

EXISTS:a:entryDate=$$TODAY-7d

EXISTS:a:entryDate_Mod=gt

EXISTS:a:ownerID=FIELD:ID

 

Hope this helps. 

 

Avatar

Community Advisor

It's beautiful! Thank you and thanks @Doug_Den_Hoed__AtAppStore !

If this helped you, please mark correct to help others : )