<?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: how to 'last refresh date'? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360734#M60321</link>
    <description>&lt;P&gt;I am consuming from SSAS cube, I cannot touch the model... I can only, either create a &lt;STRONG&gt;measure&lt;/STRONG&gt; or a &lt;STRONG&gt;calculated column&lt;/STRONG&gt; in the SSAS tabular model.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Feb 2022 09:17:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-25T09:17:27Z</dc:date>
    <item>
      <title>how to 'last refresh date'?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360590#M60314</link>
      <description>&lt;P&gt;I am trying to display in a front page of my .pbix the "last refresh date".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an SSAS cube where I consume from: I have the option of creating a &lt;STRONG&gt;new measure&lt;/STRONG&gt; with code&amp;nbsp; &amp;nbsp; &lt;STRONG&gt;NOW()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I also have the option to create a calculated column in my DimDate and add code&amp;nbsp; NOW() in the calculated column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any option that is better/more robust? Shall I go with calculated column or a new measure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 07:59:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360590#M60314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-25T07:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to 'last refresh date'?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360688#M60317</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I recommend adding a new table in PQ like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;let&lt;/P&gt;&lt;P&gt;Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}}),&lt;BR /&gt;#"Changed Type" = Table.TransformColumnTypes(Source,{{"Date Last Refreshed", type datetimezone}})&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;#"Changed Type"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The use that in a KPI.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;My LinkedIn: &lt;A href="https://www.linkedin.com/in/n%C3%A4ttiahov-00001/" target="_blank"&gt;https://www.linkedin.com/in/n%C3%A4ttiahov-00001/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 08:47:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360688#M60317</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-02-25T08:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to 'last refresh date'?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360734#M60321</link>
      <description>&lt;P&gt;I am consuming from SSAS cube, I cannot touch the model... I can only, either create a &lt;STRONG&gt;measure&lt;/STRONG&gt; or a &lt;STRONG&gt;calculated column&lt;/STRONG&gt; in the SSAS tabular model.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 09:17:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360734#M60321</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-25T09:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to 'last refresh date'?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360991#M60340</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I see. In that case I would use NOW() in a measure. It is my go to solution when I can't modify the data model.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 11:10:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2360991#M60340</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-02-25T11:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to 'last refresh date'?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2366797#M60602</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Create a measure to display the last refresh date .&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = NOW()&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Community Support Team _ Ailsa Tao&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 08:42:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-last-refresh-date/m-p/2366797#M60602</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-01T08:42:08Z</dc:date>
    </item>
  </channel>
</rss>

