Hi There,
I have below scenario where I need to remove null rows (complete row and remove all the duplicate values from the "Concat_field"
Any quick help is appreciated.
| Identifier | Concat_field |
| null | ates;aeg;13fef |
| null | agerg |
| aegaw | 123;grp;123;grp;rts |
| agwetweg | rts;rts;rts;rts;ypr;ypr;ypr |
| agwegw | mgyj |
| agrgawe | jfuty;setref |
| aerwg | 896jyjy |
Solved! Go to Solution.
How does something like this look @Chauche? In the filter I've used 'null' but if the records are actually null rather than the text 'null' just change [Identifier] != 'null' to !isnull([Identifier]).
Hi @Chauche ,
Here's a simple solution which give desired output.
Let us konw if it works as you want.
Cheers !
Thanks each of you. I could get the best way to get my result. @frederikE your solution was a optimal one I must say.
