Forum Discussion
jefflynn
2 years agoFrequent Visitor
Concatenate not working
I want to concatenate Employee Number (text) with SelectedEndYearMeasure. Selected End = SELECTEDVALUE ('Cal End'[End Date]) - measure SelectedEndYearMeasure = Year([Selected End]) My colum...
Greg_Deckler
Community Champion
2 years agojefflynn If that is a calculated column, probably won't work as measures don't generally work in calculated columns. You could use a measure form like:
EmployeeSelectedEndYearMeasure = CONCATENATE(MAX('Raw Data'[Employee Number]), [SelectedEndYearMeasure]
jefflynn
2 years agoFrequent Visitor
Still not working: