Hi
I would like to compare 2 text fields. The first in "Internal" and the second is "External".
I saw this solution
IF( ARRAYJOIN({Internal}, {Internal}) = {External},
"same",
"different"
)
which works only if the text fields are excatly the same including lower and apper case. ,eaning it is case sensitive.
I am looking for a non case sensetive solution.
IF( LOWER(ARRAYJOIN({Internal}, {Internal})) = LOWER({External}), "same", "different" )
but "= LOWER({External})" is illigel
How can I use
IF( ARRAYJOIN({Internal}, {Internal}) = {External}, "same", "different" )
to be non case sensetive?