
Hello PowerApps community,
I'm in need of help, I have this new home dashboard I'm working on and I'm running into a SharePoint List count and countrow discrepancy.
For the first discrepancies - under the "Welcome!" text, I'm trying to retrieve the total of room checks entered on current day by the technician. The formula I'm using for the total count is the following:
"Daily Room Checks " &
CountRows(
Filter(
'VNOC Room Checks',
'AV Technician'= User().FullName &&
Created = Today()
)
)
I'm getting 0 as my total when I have a total of 1. The SharePoint column types are 'AV Technician' - Single Line Text and Created is Date.
For the second discrepancy, under the Reports button - The total of YTD Pass and Fail count is inaccurate - this is the formula being used in the Text Label datacard:
"YTD Fail: " &
CountIf(
'VNOC Room Checks',
Status.Value = "Fail" &&
Year(Year) = Year(Today())
) &
"
"&
"YTD Pass: "&
CountIf(
'VNOC Room Checks',
Status.Value = "Pass" &&
Year(Year) = Year(Today())
)
the real total should be closer to 1500 for Passes and 218 for Fails. The Status column in the SharePoint List is a Choice column.
Any help with how to fix this and getting a better accurate count?