Forum Discussion
Anonymous
5 years agoNot applicable
Measure error
Measure error Measure = CONCATENATE("Update") & CONCATENATE( 'Before'[Team]) Sheet Before Name column Team Guide me please.
- 5 years ago
Hi Anonymous
Try this
Measure = CONCATENATE("Update", MAX('Before'[Team]))If that doesn't work please supply some sample data.
regards
Phil
PC2790
5 years agoCommunity Champion
Hi Anonymous ,
Try this:
Measure = CONCATENATE("Update", 'Before'[Team])
- Anonymous5 years agoNot applicable
- PC27905 years agoCommunity Champion
As you are creating a measure of the column containing multiple values, you are getting this error as it requires an aggregation on the column level.
Try creating a calculated column rather than a measure. This will fix your issue.
- Anonymous5 years agoNot applicable
PC2790 yes, in column department have more value.
Now, if i use card for show department, it show correct.
But I want to add text before department
Suggest me please.