Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a table of data like so.

Comment 1 Comment 2 Comment 3
This is a text comment null null
null this text comment has a number 2 null
null null this is comment 3
question from:https://stackoverflow.com/questions/65907179/combining-three-columns-of-text-data-in-google-data-studio

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
557 views
Welcome To Ask or Share your Answers For Others

1 Answer

Create a new calculated field, with a nested function? The below worked on your example:

REPLACE(CONCAT(CONCAT(Comment1,Comment2),Comment3),'null','')


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...