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.
Hi Anonymous
Try this
Measure = CONCATENATE("Update", MAX('Before'[Team]))If that doesn't work please supply some sample data.
regards
Phil
6 Replies
- PC2790Community Champion
Hi Anonymous ,
Try this:
Measure = CONCATENATE("Update", 'Before'[Team])
- AnonymousNot applicable
- PC2790Community 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.
- PhilipTreacySuper User
Hi Anonymous
Try this
Measure = CONCATENATE("Update", MAX('Before'[Team]))If that doesn't work please supply some sample data.
regards
Phil