<?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: Format datatime in paginated report in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2094218#M47718</link>
    <description>&lt;P&gt;You can set the displayed date format in the properties.&lt;/P&gt;&lt;P&gt;Show the properties pane first&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Select the box where you're displaying the date.&amp;nbsp; The format is in the Number section of the properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Sep 2021 12:06:29 GMT</pubDate>
    <dc:creator>PaulOlding</dc:creator>
    <dc:date>2021-09-23T12:06:29Z</dc:date>
    <item>
      <title>Format datatime in paginated report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2093450#M47692</link>
      <description>&lt;P&gt;Hi, I've copied the DAX Query from a PowerBI report, but the datetime format has timestamp in the paginated report, which I'm trying to remove. Could some help me figuring out how to format the column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Part of the DAX: 'Forbrug'[Last Activity Date] is showing for exampel: 11-03-2020 00:00:00 and I only need the date.&lt;/P&gt;&lt;P&gt;I tried to put in&amp;nbsp;'Forbrug'[Last Activity Date].Date but it didn't work...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  VAR __DS0Core = 
    SELECTCOLUMNS(
      KEEPFILTERS(
        FILTER(
          KEEPFILTERS(
            SUMMARIZECOLUMNS(
              'Forbrug'[Last Activity Date],
              'Projekter'[Sektionsnummer],
              'Projekter'[Selskab],
              'Forbrug'[Plads anvendt (MB)],
              'Forbrug'[Antal filer],
              'Projekter'[Projektnavn],
              'Organisation'[Områdenavn],
              'Projekter'[wpStage],
              'Projekter'[Status],
              'Projekter'[Link],
              'cvref References'[Posterbar],
              'Projekter'[Sagsnummer],
              'WorkPoint faser'[Oprettet],
              'WorkPoint faser'[Ekstern deling],
              __DS0FilterTable,
              __DS0FilterTable2,
              __DS0FilterTable3,
              "CountRowsWorkPoint_faser", CALCULATE(COUNTROWS('WorkPoint faser'))
            )
          ),
          OR(
            OR(
              OR(
                OR(
                  OR(
                    OR(
                      OR(
                        OR(
                          OR(
                            OR(
                              OR(
                                OR(
                                  OR(
                                    NOT(ISBLANK('Forbrug'[Last Activity Date])),
                                    NOT(ISBLANK('Projekter'[Sektionsnummer]))
                                  ),
                                  NOT(ISBLANK('Projekter'[Selskab]))
                                ),
                                NOT(ISBLANK('Forbrug'[Plads anvendt (MB)]))
                              ),
                              NOT(ISBLANK('Forbrug'[Antal filer]))
                            ),
                            NOT(ISBLANK('Projekter'[Projektnavn]))
                          ),
                          NOT(ISBLANK('Organisation'[Områdenavn]))
                        ),
                        NOT(ISBLANK('Projekter'[wpStage]))
                      ),
                      NOT(ISBLANK('Projekter'[Status]))
                    ),
                    NOT(ISBLANK('Projekter'[Link]))
                  ),
                  NOT(ISBLANK('cvref References'[Posterbar]))
                ),
                NOT(ISBLANK('Projekter'[Sagsnummer]))
              ),
              NOT(ISBLANK('WorkPoint faser'[Oprettet]))
            ),
            NOT(ISBLANK('WorkPoint faser'[Ekstern deling]))
          )
        )
      ),
      "'Forbrug'[Last Activity Date]", 'Forbrug'[Last Activity Date],
      "'Projekter'[Sektionsnummer]", 'Projekter'[Sektionsnummer],
      "'Projekter'[Selskab]", 'Projekter'[Selskab],
      "'Forbrug'[Plads anvendt (MB)]", 'Forbrug'[Plads anvendt (MB)],
      "'Forbrug'[Antal filer]", 'Forbrug'[Antal filer],
      "'Projekter'[Projektnavn]", 'Projekter'[Projektnavn],
      "'Organisation'[Områdenavn]", 'Organisation'[Områdenavn],
      "'Projekter'[wpStage]", 'Projekter'[wpStage],
      "'Projekter'[Status]", 'Projekter'[Status],
      "'Projekter'[Link]", 'Projekter'[Link],
      "'cvref References'[Posterbar]", 'cvref References'[Posterbar],
      "'Projekter'[Sagsnummer]", 'Projekter'[Sagsnummer],
      "'WorkPoint faser'[Oprettet]", 'WorkPoint faser'[Oprettet],
      "'WorkPoint faser'[Ekstern deling]", 'WorkPoint faser'[Ekstern deling]
    )

  VAR __DS0PrimaryWindowed = 
    TOPN(
      501,
      __DS0Core,
      'Forbrug'[Last Activity Date],
      1,
      'Projekter'[Sektionsnummer],
      1,
      'Projekter'[Selskab],
      1,
      'Forbrug'[Plads anvendt (MB)],
      1,
      'Forbrug'[Antal filer],
      1,
      'Projekter'[Projektnavn],
      1,
      'Organisation'[Områdenavn],
      1,
      'Projekter'[wpStage],
      1,
      'Projekter'[Status],
      1,
      'Projekter'[Link],
      1,
      'cvref References'[Posterbar],
      1,
      'Projekter'[Sagsnummer],
      1,
      'WorkPoint faser'[Oprettet],
      1,
      'WorkPoint faser'[Ekstern deling],
      1
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Sep 2021 07:38:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2093450#M47692</guid>
      <dc:creator>SJHA</dc:creator>
      <dc:date>2021-09-23T07:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Format datatime in paginated report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2094218#M47718</link>
      <description>&lt;P&gt;You can set the displayed date format in the properties.&lt;/P&gt;&lt;P&gt;Show the properties pane first&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Select the box where you're displaying the date.&amp;nbsp; The format is in the Number section of the properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Sep 2021 12:06:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2094218#M47718</guid>
      <dc:creator>PaulOlding</dc:creator>
      <dc:date>2021-09-23T12:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Format datatime in paginated report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2096893#M47795</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150936" data-lia-user-login="PaulOlding" class="lia-mention lia-mention-user"&gt;PaulOlding&lt;/a&gt;&amp;nbsp;Amazing. I was making it way too hard for myself. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Sep 2021 11:27:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-datatime-in-paginated-report/m-p/2096893#M47795</guid>
      <dc:creator>SJHA</dc:creator>
      <dc:date>2021-09-24T11:27:46Z</dc:date>
    </item>
  </channel>
</rss>

