Show missing Receipts Numbers

I need an expression to pull out missing number of receipts. Receipts are entered manually in a form.
Lets say the receipts start from 100 and to run in sequence like 101,102 and so on. If the user misses say 103,107 to fill in, how to pull this and show in App in a view as receipts not yet filled inโ€ฆthe user is supposed to fill in sequence manually. In the spreadsheet you can do it with if and countif functionโ€ฆbut how to do with expressions in AppSheet.
Thanks

Solved Solved
0 3 158
1 ACCEPTED SOLUTION

That spreadsheet is not well suited for use with AppSheet. Notably, the Used column.

A suitable replacement expression would be:

IFS(NOT(IN([Series], table[Used])), [Series])

replacing table with the name of the table in the app.

See also:



View solution in original post

3 REPLIES 3

Steve
Platinum 4
Platinum 4

What would the COUNTIF() formula look like?

3X_a_d_ad94a5f4857fdbe29acf48c9717bb07023d78f1c.png

A Col the series, B used ,the third Col D Misssing
Formula Used
If (countif(B$2:B&10,A2)=0,A2,""),
drag this formula down .
How to recreate formula like this in appsheet View.
@Steve

That spreadsheet is not well suited for use with AppSheet. Notably, the Used column.

A suitable replacement expression would be:

IFS(NOT(IN([Series], table[Used])), [Series])

replacing table with the name of the table in the app.

See also:



Top Labels in this Space