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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
jorgeslzr
Frequent Visitor

table into list

I have the first 4 columns of the table in the image below (until [PLACEMENT]). I want to add the other two columns on the right.

The first one lists all products that have a promo in the same period, while the other one lists all products that have a placement.

 

Thanks

 

Captura.PNG

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@jorgeslzr

Are you going over the question or is it the same as the one below?


https://community.powerbi.com/t5/Translated-Spanish-Desktop/tabla-a-listar-en-la-columna/m-p/1351828...

________________________

If my answer was helpful, consider Accepting it as the solution to help other members find it

Click the Thumbs-Up icon if you like this answer 🙂

Youtube Linkedin

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@jorgeslzr - You can do this like the following:

All in Promo Column =
  VAR __Period = [PERIOD]
RETURN
  CONCATENATEX(FILTER('Table',[PERIOD]=__Period),[PRODUCT],",")

All in Placement Column =
  CONCATENATEX(FILTER('Table',[PLACEMENT]=1),[PRODUCT],",")


All in Promo Measure =
  VAR __Period = MAX([PERIOD])
RETURN
  CONCATENATEX(FILTER(ALL('Table'),[PERIOD]=__Period),[PRODUCT],",")

All in Placement Measure =
  CONCATENATEX(FILTER(ALL('Table'),[PLACEMENT]=1),[PRODUCT],",")


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Fowmy
Super User
Super User

@jorgeslzr

Are you going over the question or is it the same as the one below?


https://community.powerbi.com/t5/Translated-Spanish-Desktop/tabla-a-listar-en-la-columna/m-p/1351828...

________________________

If my answer was helpful, consider Accepting it as the solution to help other members find it

Click the Thumbs-Up icon if you like this answer 🙂

Youtube Linkedin

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

amitchandak
Super User
Super User

@jorgeslzr , Try

 

column for all in promo = concatenatex(filter(Table, [Promo Title] = earlier( [Promo Title] ) ),[Product] )


column for all in Placement = concatenatex(filter(Table, [Placement] = earlier( [Placement] ) ),[Product] )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors