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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
jcastr02
Post Prodigy
Post Prodigy

Pivot Columns

Hello,  Please see the Current data set up and future .  How can I achieve this?  I have tried all pivot columns options but none are providing this result.  Any thoughts?

 

pivot.png

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

Pls try this

 

=  
VAR _t = MAX('table'[ID])
RETURN
CONCATENATEX(FIILTER(ALL('table'),'table'[ID]=_t),[CURRENT WFM],";")

 

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

Screenshot_1.png

Ahmedx
Super User
Super User

Pls try this

 

=  
VAR _t = MAX('table'[ID])
RETURN
CONCATENATEX(FIILTER(ALL('table'),'table'[ID]=_t),[CURRENT WFM],";")

 

Just a little correction on your formula. Filter has two "I", @jcastr02 wants a ";" as delimitator and adding a space will result in a more legible way:

 

 

Measure=

VAR _t = MAX('MyTable'[ID])
RETURN
CONCATENATEX(FILTER(ALL('MyTable'),'MyTable'[ID]=_t),[WFM],"; ")

 

 

But @Ahmedx formula is perfect

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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