SOLVED

Concat two column data into one in log queries

Copper Contributor

Hi,

 

I am in a process to create alert and there I want to merge 2 columns and pass it as one. Example below:

 

  • Object - Activity + Account

Thanks.

 

1 Reply
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

Hi

You can use extend and  strcat functions.

Example:

... | extend New_Column = strcat(First_Column_Name, Second_Column_Name) 
1 best response

Accepted Solutions
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

Hi

You can use extend and  strcat functions.

Example:

... | extend New_Column = strcat(First_Column_Name, Second_Column_Name) 

View solution in original post