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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
dezmondh
Frequent Visitor

Formula is adding all results to one cell instead of individual lines

Hello,

I have a formula measure that allows me to see which projects were removed compared to the previous period. The problem is that it puts all the results in one cell rather than listing them out so I can add other columns.

 

Can anyone advise on how to fix this? Thank you...

Screenshot and formula found below.

 

Screenshot 2024-03-18 141309.png

 

Removed =
var _table = FILTER(ALL('Table1'), NOT('Table1'[Project ID]) in SELECTCOLUMNS(FILTER(ALLSELECTED('Table1'),'Table1'[Rank] = EARLIER('Table1'[Rank])+1),"1",'Table1'[Project ID]))

return

CONCATENATEX(
FILTER(_table,[Rank]=MAX('Table1'[Rank])-1),[Project ID],",")
1 REPLY 1
lbendlin
Super User
Super User

Measures can only return scalar values, they cannot return lists or tables. What you did is the best you can do with measures.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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