Forum Discussion

Jolyon's avatar
Jolyon
Helper III
9 years ago
Solved

add a blank when merging 2 columns?

Hi everyone,   need a little help:   I want to merge 2 columns with CONCATENATE([column1]; [column2]) and I get for example "10111Adworks" But how can I add a blank between these values? -->to g...
  • JoHo_BI's avatar
    9 years ago

    Hi Jolyon,

     

    Try using CONCATENATE([column1]&" ", [column2])

     

    The ampersand let's you add another function, or in this case an empty space after the first parameter. 

     

    Hope this meets your needs!