The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have excell sheet which has multiple columns, one column is having csv value, That I needed to use for slicer.
For an eg .
Sr No | TC ID | Resuly | |
1 | TC95524 | r1 | |
2 | TC269975 | r2,r4,r5,r6 | |
3 | TC206228 | Pass | r2,r4,r6,r1 |
4 | TC206230 | Fail | r2,r4,r6,r2 |
5 | TC206242 | Pass | r2,r4,r6,r3 |
6 | TC206243 | Pass | r2,r4,r6,r4 |
7 | TC206244 | Pass | r2,r4,r6,r5 |
8 | TC206245 | Pass | r2,r4,r6,r6 |
9 | TC206246 | Pass | r2,r4,r6,r7 |
10 | TC207576 | Pass | r2,r4,r6,r8 |
11 | TC207577 | Fail | r2,r4,r6,r9 |
12 | TC207578 | Pass | r2,r4,r6,r10 |
13 | TC207579 | Pass | r2,r4,r6,r11 |
14 | TC207581 | Pass | r2,r4,r6,r12 |
15 | TC207582 | No result | r2,r4,r6,r13 |
16 | TC207583 | Pass | r2,r4,r6,r14 |
17 | TC207584 | Pass | r2,r4,r6,r15 |
18 | TC207585 | Pass | r2,r4,r6,r16 |
19 | TC207586 | Pass | r2,r4,r6,r17 |
20 | TC207587 | Pass | r2,r4,r6,r18 |
21 | TC207588 | Pass | r2,r4,r24 |
22 | TC207589 | Fail | r7 |
Solved! Go to Solution.
Hi @Vishwamber ,
Based on the sample and description you provided, Please try the following steps:
My Sample:
1.You can create a calcualted table.
Table 2 =
DATATABLE (
"Value", STRING,
"Index", INTEGER,
{
{ "r1", 1 },
{ "r2", 2 },
{ "r3", 3 },
{ "r4", 4 },
{ "r5", 5 },
{ "r6", 6 },
{ "r7", 7 },
{ "r8", 8 },
{ "r9", 9 },
{ "r10", 10 },
{ "r11", 11 },
{ "r12", 12 },
{ "r13", 13 },
{ "r14", 14 },
{ "r15", 15 },
{ "r16", 16 },
{ "r17", 17 },
{ "r18", 18 },
{ "r19", 19 },
{ "r20", 20 },
{ "r21", 21 },
{ "r22", 22 },
{ "r23", 23 },
{ "r24", 24 }
}
)
2. Use the following code to create a measure.
Contains_r =
VAR Within_text =
SELECTEDVALUE ( 'Table'[y] ) & ","
VAR Find_text =
SELECTEDVALUE ( 'Table 2'[Value], BLANK () ) & ","
RETURN
IF ( CONTAINSSTRING ( Within_text, Find_text ), 1, 0 )
3. Select your visual object, put the measure in the "Filters on this visual" section, and filter it by "Measure is 1".
The field of the slicer is from Table 2. When you select "r1" in the slicer, Result is as below.
Is this the result you expect?
For further detail, please find attachment.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Vishwamber ,
Based on the sample and description you provided, Please try the following steps:
My Sample:
1.You can create a calcualted table.
Table 2 =
DATATABLE (
"Value", STRING,
"Index", INTEGER,
{
{ "r1", 1 },
{ "r2", 2 },
{ "r3", 3 },
{ "r4", 4 },
{ "r5", 5 },
{ "r6", 6 },
{ "r7", 7 },
{ "r8", 8 },
{ "r9", 9 },
{ "r10", 10 },
{ "r11", 11 },
{ "r12", 12 },
{ "r13", 13 },
{ "r14", 14 },
{ "r15", 15 },
{ "r16", 16 },
{ "r17", 17 },
{ "r18", 18 },
{ "r19", 19 },
{ "r20", 20 },
{ "r21", 21 },
{ "r22", 22 },
{ "r23", 23 },
{ "r24", 24 }
}
)
2. Use the following code to create a measure.
Contains_r =
VAR Within_text =
SELECTEDVALUE ( 'Table'[y] ) & ","
VAR Find_text =
SELECTEDVALUE ( 'Table 2'[Value], BLANK () ) & ","
RETURN
IF ( CONTAINSSTRING ( Within_text, Find_text ), 1, 0 )
3. Select your visual object, put the measure in the "Filters on this visual" section, and filter it by "Measure is 1".
The field of the slicer is from Table 2. When you select "r1" in the slicer, Result is as below.
Is this the result you expect?
For further detail, please find attachment.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have updated table, I want to create filter which has unique value r1 to r24, if I slect select r1 it should filter row containing r1.
Hi @Vishwamber
Could you please demonstrate what you mean by 'CSV value'? By default, any column can be used as a slicer, so the question is not entirely clear.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
User | Count |
---|---|
58 | |
56 | |
55 | |
50 | |
32 |
User | Count |
---|---|
172 | |
89 | |
70 | |
46 | |
45 |