Hi everyone,
Today we noticed something strange. Until a few weeks ago using a CountRows() to count all of the rows in a Dataverse table was no problem. Today we noticed that the quantity does not update.
We're trying to count all of the incidents in the incident table.
CountRows(Aanvragen);
The amount returned is 2741:

We remove one record using the following syntax
Remove(Aanvragen, First(Aanvragen));
This removes the first record from the incidents table. When we look again the quantity returned stays 2741.
However... when we use a CountIf() with all the possible Status codes the amount changes.
The initial quantity returned is 2721.

Again, we remove the first record from the incidents table, what does the CountIf() do?
It updates the quantity:

Does anyone know why the CountRows() doesn't work in this case? I remember it working before.
Thanks in advance for the answers!