Forum Discussion

gusdahu's avatar
gusdahu
Helper IV
8 years ago
Solved

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
  • v-cherch-msft's avatar
    8 years ago

    gusdahu

    To get the measure as requested, you may use SELECTEDVALUE Function:

    Measure :=
    CONCATENATE (
    SELECTEDVALUE ( 'Table'[Column1] ),
    SELECTEDVALUE ( 'Table'[Column2] )
    )


    Regards,
    Cherie