Team,
I have TimeTracker project where Members will record Daily Timesheet for each project. I'm trying to build Member Dashboard where I want to display his Total Hours spent for the current month.
I Used HTML to display counts like below
<div class="ir-body">
<div class="ir-container">
<div class="row statsrow">
<div class="col-sm-4 statscard bg3"><p class="statsname">Total Hours</p><p class="statsnumber"><<SUM Task.Hours WHERE Task.ps_AssignTo=LoggedInSystemUser AND MONTH(Task.TaskDate)=CURRENT_MONTH >></p></div>
</div>
<div style="clear:both !important;"></div>
</div>
</div>
<div style="clear:both !important;"></div>
When I logged in as a Member, counts coming as empty, any thoughts. Let me know if you need any further details to debug further on this.
Thank you
Jyotheeswar Reddy