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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Pikachu-Power
Impactful Individual
Impactful Individual

multiple information in one cell

Hello,

 

i need some idea how to handle multiple information in one cell 🙂 I have the follwing table and want to see the final result:

 

111.PNG

 

I need a Filter with the group entries and dynamic group column in the final matrix (see example where B is filtered).

 

I tried to create a separate table like

 

Measure_Selection =
DATATABLE (
"Measure",STRING,
"Order",INTEGER,
{
{ "A",1 },
{ "B",2 },
{ "C",3 }
}
)
 
but than it is not possible to use a measure as a column.
 
With
A = IF(ISBLANK(SEARCH("A", Table[Group], 1, BLANK())), BLANK(), "A")
it would be possible to extract A in a new column but didnt helped. 
 
many thanks for ideas.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Pikachu-Power ,

 

You could create a table contains the split groups and use it as slicer.

Then create a measure as below and filter the blank rows.

Measure = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[group]),SELECTEDVALUE(slicer[group])),SELECTEDVALUE(slicer[group]),BLANK())

3.PNG

 

Best Regards,

Jay

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Pikachu-Power ,

 

You could create a table contains the split groups and use it as slicer.

Then create a measure as below and filter the blank rows.

Measure = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[group]),SELECTEDVALUE(slicer[group])),SELECTEDVALUE(slicer[group]),BLANK())

3.PNG

 

Best Regards,

Jay

Nice idea! Thank you.

amitchandak
Super User
Super User

@Pikachu-Power , is it possible to break his information into rows, using split by a delimiter in power query?

 

https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/

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

hi amitchandak,

you mean to split by a delimiter into columns and via pivot into rows? i was thinking about that but we would have to much rows than. with for example 100000 datasets and in avarage 3 group elements we would have 300000 datasets.

 

Is it may possible to create additional columns via delimiter with only A, B or C entries and control these via the Measure_Selection Table?

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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