Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

Measure for concatenating values by ID

Hi all,

 

I have a custom column which has the desired output: 

 

CONCATENATEX(FILTER(SUMMARIZE(FlaggingLabor,FlaggingLabor[Date of Action],FlaggingLabor[Location]),[Date of Action]=EARLIER(FlaggingLabor[Date of Action])),[Location],", ")
 
This is basically a string concatenation by id. I need to use this value for a tooltip, but pbi will not let me drag the column into the tooltip. From what I've read, I basically need a measure that does the same thing my custom column does so I can use the measure for the tool tip. The 'id' is Date of Action and the rows to be concatenated are the Location field. If anyone knows how to transcribe the custom column into a measure that would be of great help. Thank you! 

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@felixthecat_nyc Try:

Measure = 
  VAR __Date = MAX(FlaggingLabor[Date of Action])
RETURN
CONCATENATEX(FILTER(SUMMARIZE(FlaggingLabor,FlaggingLabor[Date of Action],FlaggingLabor[Location]),[Date of Action]=__Date),[Location],", ")

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2

@Greg_Deckler That worked, thank you for your time! 

Greg_Deckler
Super User
Super User

@felixthecat_nyc Try:

Measure = 
  VAR __Date = MAX(FlaggingLabor[Date of Action])
RETURN
CONCATENATEX(FILTER(SUMMARIZE(FlaggingLabor,FlaggingLabor[Date of Action],FlaggingLabor[Location]),[Date of Action]=__Date),[Location],", ")

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.