Forum Discussion
gusdahu
8 years agoHelper IV
Concatenation Question
Hellow Power BI community, I currently have a direct link from PeopleSoft to my Power BI. How can I concatenate two columns using the measurement functionality? Regards, Gus Dahu
- 8 years ago
To get the measure as requested, you may use SELECTEDVALUE Function:
Measure := CONCATENATE ( SELECTEDVALUE ( 'Table'[Column1] ), SELECTEDVALUE ( 'Table'[Column2] ) )
Regards,
Cherie
gusdahu
8 years agoHelper IV
Shantanu0007,
I aprpeciate your quick response to my question. Unfortunately your solution did not work. Do you have any other alternatives?
Regards,
Gus Dahu
Shantanu00007
8 years agoHelper I
Could you please give a snapshot of the requirement and desired output ?
- gusdahu8 years agoHelper IV
Hi Shantanu00007,
Basically I have a "PO_ID" column and a "Business_Unit_PO" column. I would like to concatenate the two to create a unique identifier to use in my analysis. I believe both columns are in text format although I am not 100% sure as I'm using the direct query feature from PeopleSoft which in turn disables a lot of Power BIs functionalities such as Edit Query.
Regards,
Gus Dahu
- Shantanu000078 years agoHelper ICreate a new column instead of new measure. Newcolumn=[PO_ID]&[Business_Unit_PO]
- gusdahu8 years agoHelper IV
Shantanu00007,
The New Column option is greyed out as my data is directly connected to PeopleSoft.
Regards,
Gus Dahu