Forum Discussion
Peter Scott Keillor
May 02, 2018Copper Contributor
Comparative Algorithms?
Hey y'all. I've got two very large, different sized arrays that I need to find common elements between. For example, consider that I have the two following, arbitrary, made-up arrays: I hav...
Philippa Simpson
May 02, 2018Copper Contributor
I need a simple function that just does the following . if a4 - b4 is less than or = to 0 then show NIL . can anyone help please
Jonathan Lollis
May 02, 2018Copper Contributor
Philippa Simpson wrote:
I need a simple function that just does the following . if a4 - b4 is less than or = to 0 then show NIL . can anyone help please
While this is unrelated to this thread use the following to see if it works.
=if(sum(A4-B4)<=0,"NIL",sum(A4-B4))