Solved
how to merge two arrays excluding null values
hi,
I have two arrays,{"","1"} and {"2","3"}
I want to merge them, but exclude null and have something like this
{"1","2","3}.
Any help is appreciated
hi,
I have two arrays,{"","1"} and {"2","3"}
I want to merge them, but exclude null and have something like this
{"1","2","3}.
Any help is appreciated
filter(a!isNotNullOrEmpty(_), union({"","1"}, {"2","3"}))Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.