Issue combining data of 2 fields
I need to combine data of two fields. 1 field is a dropdown and the other open text.
The first option to combine them didn't work:
=TEXT([Content Subset]@row, "General") & [Playlist Brand]@row
The second option was to convert the 'Content Subset' to text and then combine, but that again didn't work:
=TEXT([Content Subset]@row, "General") & [Playlist Brand]@row
Also separating the steps, converting the 'Content Subset' to text on its own, didn't work. I'm not sure what other options are there, or what may cause this?
Best Answer
-
It looks like you are using Excel syntax which very often is different from Smartsheet syntax.
Smartsheet does not have a TEXT function. You also combine strings by "adding" them together.
=[Content Subset]@row + [Playlist Brand]@row
If you want a delimiter in between:
=[Content Subset]@row + "delimiter_of_choice" + [Playlist Brand]@row
Answers
-
It looks like you are using Excel syntax which very often is different from Smartsheet syntax.
Smartsheet does not have a TEXT function. You also combine strings by "adding" them together.
=[Content Subset]@row + [Playlist Brand]@row
If you want a delimiter in between:
=[Content Subset]@row + "delimiter_of_choice" + [Playlist Brand]@row
-
Thanks, this resolved my problem!
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!