Hi @Anonymous,
I agree with @Anonymous's thought almost. Please take a try with the following formula:
CountRows(Filter(SPList1, Status="submitted")) + CountRows(Filter(SPList2, Status="submitted"))
Note: Above formula may cause Delegation issue, you could consider take a try to save your SPLIst1 and SPList2 into two separated Collections, and then use the Collection as data source within your formula.
In order to avoid the Delegation warning issue, please take a try with the following workaround:
Set the OnVisible property of the first screen of your app to following:
ClearCollect(SPList1Collection, SPList1);
ClearCollect(SPList2Collection, SPList2)
Modify your formula as below:
CountRows(Filter(SPList1Collection, Status="submitted")) + CountRows(Filter(SPList2Collection, Status="submitted"))
Best regards,
Kris