<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Need Help Adding Text Slicer to Table in Power BI in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4019931#M35753</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working on a project in Power BI and need a table that changes its values based on three different slicers. The slicers I need are as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;First Slicer:&lt;/STRONG&gt; Contains text values&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Second Slicer:&lt;/STRONG&gt; Contains numeric values (this slicer is set up correctly and works fine)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Third Slicer:&lt;/STRONG&gt; Contains a set of measures written with a calculated group (this slicer is also set up correctly and works fine)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;My problem is adding the first slicer to the table. I'm not sure how to add this text slicer to my table so that the values are filtered based on the selections from the text slicer.&lt;/P&gt;&lt;P&gt;Could anyone guide me on how to do this? Any advice or practical examples would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you very much&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jul 2024 07:29:39 GMT</pubDate>
    <dc:creator>MahsaTMahsa</dc:creator>
    <dc:date>2024-07-02T07:29:39Z</dc:date>
    <item>
      <title>Need Help Adding Text Slicer to Table in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4019931#M35753</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working on a project in Power BI and need a table that changes its values based on three different slicers. The slicers I need are as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;First Slicer:&lt;/STRONG&gt; Contains text values&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Second Slicer:&lt;/STRONG&gt; Contains numeric values (this slicer is set up correctly and works fine)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Third Slicer:&lt;/STRONG&gt; Contains a set of measures written with a calculated group (this slicer is also set up correctly and works fine)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;My problem is adding the first slicer to the table. I'm not sure how to add this text slicer to my table so that the values are filtered based on the selections from the text slicer.&lt;/P&gt;&lt;P&gt;Could anyone guide me on how to do this? Any advice or practical examples would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you very much&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 07:29:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4019931#M35753</guid>
      <dc:creator>MahsaTMahsa</dc:creator>
      <dc:date>2024-07-02T07:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Adding Text Slicer to Table in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4021393#M35767</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="426183" data-lia-user-login="MahsaTMahsa" class="lia-mention lia-mention-user"&gt;MahsaTMahsa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to create a metric that is dynamically updated based on the slicer's selection. The following is an example of how to create such a metric:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SelectedMeasure = 
SWITCH(
    TRUE(),
    SELECTEDVALUE('Measure Slicer'[Measure]) = "Pre Month", [Pre Month Measure],
    SELECTEDVALUE('Measure Slicer'[Measure]) = "Pre Week", [Pre Week Measure],
    SELECTEDVALUE('Measure Slicer'[Measure]) = "Pre Year", [Pre Year Measure],
    SELECTEDVALUE('Measure Slicer'[Measure]) = "Pre Season", [Pre Season Measure]
)&lt;/LI-CODE&gt;&lt;P&gt;Add it SelectedMeasure to your form visuals.This will ensure that the table is updated according to the selected measure in the third slicer.&lt;/P&gt;&lt;P&gt;Ensure that all slicers are set to interact with the table visuals. You can check and adjust this by selecting each slicer, going to the Format tab, and setting Edit Interaction to.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hackcrr&lt;/P&gt;&lt;P&gt;If this post helps, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;kudos to this post&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 00:02:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4021393#M35767</guid>
      <dc:creator>hackcrr</dc:creator>
      <dc:date>2024-07-03T00:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Adding Text Slicer to Table in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4031678#M35868</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I made the time slicer with the Calculation Measure and there is no problem&lt;BR /&gt;My question now is for the text slicer, which includes categories, groups, etc. (the blue part in the picture)&lt;BR /&gt;I don't know how to make this part of the table dynamic with slicer&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 05:26:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4031678#M35868</guid>
      <dc:creator>MahsaTMahsa</dc:creator>
      <dc:date>2024-07-09T05:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Adding Text Slicer to Table in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4070829#M36224</link>
      <description>&lt;P&gt;Hello,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="740391" data-lia-user-login="hackcrr" class="lia-mention lia-mention-user"&gt;hackcrr&lt;/a&gt;&amp;nbsp;,thanks for your concern about this issue.&lt;/P&gt;
&lt;P&gt;Your answer is excellent!&lt;BR /&gt;And I would like to share some additional solutions below.&lt;BR /&gt;Hi,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="426183" data-lia-user-login="MahsaTMahsa" class="lia-mention lia-mention-user"&gt;MahsaTMahsa&lt;/a&gt; I am&amp;nbsp; glad to help you.&lt;/P&gt;
&lt;P&gt;According to your description, you want to realize that when clicking on the slicer the selected option is added as a column to the viusal&lt;/P&gt;
&lt;P&gt;For the text slicer you can try to add the field parameter.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;URL:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if" target="_blank" rel="noopener"&gt;Use parameters to visualize variables - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;To add it as a slicer, you may need to rework your previous MEASURES a bit because the filtering conditions have changed.&lt;/P&gt;
&lt;P&gt;I've uploaded the pbix file I used for testing, hope this helps.&lt;BR /&gt;&lt;BR /&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Carson Jian,&lt;BR /&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 08:20:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Need-Help-Adding-Text-Slicer-to-Table-in-Power-BI/m-p/4070829#M36224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-31T08:20:18Z</dc:date>
    </item>
  </channel>
</rss>

