<?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 Re: Parameter value not picked up in calculated column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4623904#M176979</link>
    <description>&lt;P&gt;This can just be a measure you add to your table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;KPI Met = 
var selectedDays = SELECTEDVALUE( Select_days_to_add[Select_days_to_add Value] )
var dt = SELECTEDVALUE( 'Table'[Date] )
var addDays = 
SWITCH(
   true,
   WEEKDAY('Table'[Date])&amp;lt;=3, 0,
   WEEKDAY('Table'[Date])&amp;lt;=6, 2,
   1
)
return 
IF(
   SELECTEDVALUE( 'Table'[Mode] ) = "Air", 
   dt, 
   dt + addDays
)
   &lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 25 Mar 2025 09:53:45 GMT</pubDate>
    <dc:creator>Deku</dc:creator>
    <dc:date>2025-03-25T09:53:45Z</dc:date>
    <item>
      <title>Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4621986#M176912</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column which reads as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Date allowed for KPI Met = If('Table'[Mode]="Air",'Table'[Date],(If(WEEKDAY('Table'[Date])&amp;lt;=3,'Table'[Date]+&lt;STRONG&gt;Select_days_to_add[Select_days_to_add Value]&lt;/STRONG&gt;,if(WEEKDAY('Table'[Date])&amp;lt;=6,'Table'[Date]+&lt;STRONG&gt;Select_days_to_add[Select_days_to_add Value]&lt;/STRONG&gt;+2,'Table'[Date]+&lt;STRONG&gt;Select_days_to_add[Select_days_to_add Value]&lt;/STRONG&gt;+1))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Select_days_to_add[Select_days_to_add Value]&lt;/STRONG&gt; is from the parameter defined. Despite changing the values of parameter, the "Date allowed for KPI Met" remains the same. Could you please let me know a workaround for this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not able to create a measure as date value has many duplicate values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Muralidhar&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:00:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4621986#M176912</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-24T09:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4621998#M176913</link>
      <description>&lt;P&gt;Calculated tables and columns are evaluated on semantic model refresh. Parameters on report pages cannot dynamically updates these, only measures&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What effect are you trying to achieve?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:04:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4621998#M176913</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-24T09:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622013#M176915</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;&amp;nbsp;Thanks for the response. I am trying provide the user a dropdown of values to choose from;&amp;nbsp;numbers between 1 to 10, 3 being default, and capture this value in&amp;nbsp;&lt;STRONG&gt;Select_days_to_add[Select_days_to_add Value]&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;and add it to the date value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:13:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622013#M176915</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-24T09:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622015#M176916</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;&amp;nbsp;This value has to be added to&amp;nbsp;&lt;SPAN&gt;Table'[Date] column.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:15:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622015#M176916</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-24T09:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622073#M176917</link>
      <description>&lt;P&gt;And do what with it?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:38:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622073#M176917</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-24T09:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622085#M176919</link>
      <description>&lt;P&gt;and display that as a new column in the table. It will be then shown in a table visual.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:46:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4622085#M176919</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-24T09:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4623857#M176978</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;&amp;nbsp;would you be able to help?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 09:35:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4623857#M176978</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-25T09:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4623904#M176979</link>
      <description>&lt;P&gt;This can just be a measure you add to your table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;KPI Met = 
var selectedDays = SELECTEDVALUE( Select_days_to_add[Select_days_to_add Value] )
var dt = SELECTEDVALUE( 'Table'[Date] )
var addDays = 
SWITCH(
   true,
   WEEKDAY('Table'[Date])&amp;lt;=3, 0,
   WEEKDAY('Table'[Date])&amp;lt;=6, 2,
   1
)
return 
IF(
   SELECTEDVALUE( 'Table'[Mode] ) = "Air", 
   dt, 
   dt + addDays
)
   &lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 25 Mar 2025 09:53:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4623904#M176979</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-25T09:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter value not picked up in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4624418#M177010</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 15:26:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Parameter-value-not-picked-up-in-calculated-column/m-p/4624418#M177010</guid>
      <dc:creator>murali5431</dc:creator>
      <dc:date>2025-03-25T15:26:14Z</dc:date>
    </item>
  </channel>
</rss>

