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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors