[tw5] Re: Tricky Filter Question

2021-02-15 Thread Charlie Veniot
Just using pseudocode to understand the process: bCount = the number of entries in B aCount = the number of entries in A *minus 1* (i.e. minus the last entry which the process always leaves as is, so the last one is ignored) aLastEntry = the last entry Result will be the final list

[tw5] Re: Tricky Filter Question

2021-02-15 Thread scourfie...@gmail.com
Ideally "Alternative" would just be overriden by Delta, since it doesn't appear in List B On Monday, 15 February 2021 at 03:26:34 UTC cj.v...@gmail.com wrote: > Silly question: If A was : Alpha Beta Alternative Delta, and B was still > "Alpha Gamma", what should the final result be? > > On

[tw5] Re: Tricky Filter Question

2021-02-14 Thread Charlie Veniot
Silly question: If A was : Alpha Beta Alternative Delta, and B was still "Alpha Gamma", what should the final result be? On Sunday, February 14, 2021 at 8:25:57 AM UTC-4 scourfie...@gmail.com wrote: > Hey all > > I've got a situation where I have two lists. List A and List B. I've >