Forum Discussion
mmarchioni
Helper I
5 years agoAdd Prefix to only rows in column with text
I have a column where I would like to add a prefix to only those rows that have text. What I have: 24 Blank 10 12 Blank What I get when I add the prefix: A24 A A10 A12 A What I ...
- 5 years ago
You have updated your comment 🙂
Anyways you can try below approch:-
A2with_prefix = IF ( Trim(rvTX[Related Patient.A2Cd]) <> BLANK(), "A" & rvTX[Related Patient.A2Cd], BLANK() )
Samarth_18
Community Champion
5 years agoHI mmarchioni ,
You can create column with below code:-
with_prefix =
IF ( NOT ( ISBLANK ( prefix[Column1] ) ), "A" & prefix[Column1], BLANK () )
Thanks,
Samarth