Count Each Row with a similar Status

Hi, I have an App that scans the material that receiving in my warehouse and too scan the delivery to the assigned carrier. When we scan it, the app shows what carrier he will receive.


So, when the material is delivered I did create a module for this, in this module first the user has to select the correct carrier and if he doesnโ€™t do it the app does not allow scanning. this allows continuous scanning of the same carrier

what I try to do now is create a virtual column that shows the count of all skid of the same carrier that remains in the warehouse, these must be status โ€œload Recibidoโ€ or โ€œload in Transitโ€


when scanning the delivery, the user can know how many skids are left from the same carrier having pending to scan and As you scan the account, the count is subtracted

example:

I am lost with the formula for this, as this need filter only the load (rows) that have a status of In transit or receiving but not others status.

thank you for your help

Solved Solved
0 2 71
1 ACCEPTED SOLUTION

youโ€™re awesome, the formula works perfectly!!

3X_f_e_fefac3162d4de9781affec2ab1801439780aef96.png

the scan to delivery is another table but just relate the virtual column with this formula:

3X_2_9_295bf0cbaff0848e4af23d5cf8873edba95ca6df.png
and now:

3X_d_f_dfcde54f4452384984c6eba0b74807f21be40a8a.png

thank you very much, solved!!

View solution in original post

2 REPLIES 2

If I understood correctly, maybe something like this:

COUNT( FILTER(
  loads ,
  AND(
    [carrier] = [_THISROW].[carrier] ,
    IN( [status] , LIST( "load recibido" , "load en transito" ) )
  )
) )

youโ€™re awesome, the formula works perfectly!!

3X_f_e_fefac3162d4de9781affec2ab1801439780aef96.png

the scan to delivery is another table but just relate the virtual column with this formula:

3X_2_9_295bf0cbaff0848e4af23d5cf8873edba95ca6df.png
and now:

3X_d_f_dfcde54f4452384984c6eba0b74807f21be40a8a.png

thank you very much, solved!!

Top Labels in this Space