<?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: Time sheet dont have all date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4371175#M173530</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="905626" data-lia-user-login="matus_jun" class="lia-mention lia-mention-user"&gt;matus_jun&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;timalbers&amp;nbsp;for the quick reply. I have some other thoughts to add:&lt;/P&gt;
&lt;P&gt;(1)&amp;nbsp;My test data and data model are the same as yours.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2) Create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Workday = IF(MAX('Table'[shift_date]) in VALUES('CALENDAR'[Date]),1,0) &lt;/LI-CODE&gt;
&lt;P&gt;(3) Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jan 2025 06:12:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-20T06:12:31Z</dc:date>
    <item>
      <title>Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364767#M173276</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;Hi im sorry for my english&amp;nbsp;&lt;BR /&gt;my shift_date dont have date when employee dont work and I cant count Consecutive workday&amp;nbsp;&lt;BR /&gt;can I fill shift_date and if that day have no data workday = 0&amp;nbsp;&lt;BR /&gt;please Help me how to it&amp;nbsp;&lt;BR /&gt;thank you alot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 09:35:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364767#M173276</guid>
      <dc:creator>matus_jun</dc:creator>
      <dc:date>2025-01-15T09:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364795#M173280</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="905626" data-lia-user-login="matus_jun" class="lia-mention lia-mention-user"&gt;matus_jun&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;you may want to create a date table within your model. You could do this with the following DAX code:&lt;/P&gt;&lt;P&gt;calendar_table = CALENDARAUTO()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Afterwards you just need to connect the date column of the newly created date table with your shift_date column in the model view. You can now use the new column for your visual instead of the shift_date column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will ensure that you can show every day and not just the days in your fact table.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 09:46:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364795#M173280</guid>
      <dc:creator>timalbers</dc:creator>
      <dc:date>2025-01-15T09:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364884#M173286</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thank you alot but I got date as blank when i use it with emp_id&lt;BR /&gt;did I do something wrong?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 10:25:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364884#M173286</guid>
      <dc:creator>matus_jun</dc:creator>
      <dc:date>2025-01-15T10:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364930#M173294</link>
      <description>&lt;P&gt;This happens often when there is no proper relationship between the fields.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's hard to tell exactly, as I don't know how your model is set up.&lt;/P&gt;&lt;P&gt;Could you share a screenshot of your model view?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 10:56:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364930#M173294</guid>
      <dc:creator>timalbers</dc:creator>
      <dc:date>2025-01-15T10:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364935#M173295</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;this is my&amp;nbsp;&lt;SPAN&gt;model view&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 11:00:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364935#M173295</guid>
      <dc:creator>matus_jun</dc:creator>
      <dc:date>2025-01-15T11:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364936#M173296</link>
      <description>&lt;P&gt;Try to set up a filter in the filter pane after selecting your visual.&lt;/P&gt;&lt;P&gt;Something like this: "Date" is not blank&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 11:02:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364936#M173296</guid>
      <dc:creator>timalbers</dc:creator>
      <dc:date>2025-01-15T11:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364938#M173297</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Im sorry but I still got blank value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 11:05:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364938#M173297</guid>
      <dc:creator>matus_jun</dc:creator>
      <dc:date>2025-01-15T11:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364943#M173298</link>
      <description>&lt;P&gt;I'm sorry to hear that, but I fear I am not able to help you without taking a deeper look inside your model. Is it possible for you to share a example pbix file? Remeber to remove all sensitive information you don't want to share.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 11:12:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4364943#M173298</guid>
      <dc:creator>timalbers</dc:creator>
      <dc:date>2025-01-15T11:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4366098#M173362</link>
      <description>&lt;P&gt;How can I send it to you?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 02:28:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4366098#M173362</guid>
      <dc:creator>matus_jun</dc:creator>
      <dc:date>2025-01-16T02:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4367056#M173388</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You may upload your file to a cloud storage (like&amp;nbsp;OneDrive, Dropbox, Google Drive or Wetransfer for example)&amp;nbsp;and paste the link to that storage location.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 11:00:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4367056#M173388</guid>
      <dc:creator>timalbers</dc:creator>
      <dc:date>2025-01-16T11:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Time sheet dont have all date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4371175#M173530</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="905626" data-lia-user-login="matus_jun" class="lia-mention lia-mention-user"&gt;matus_jun&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;timalbers&amp;nbsp;for the quick reply. I have some other thoughts to add:&lt;/P&gt;
&lt;P&gt;(1)&amp;nbsp;My test data and data model are the same as yours.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2) Create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Workday = IF(MAX('Table'[shift_date]) in VALUES('CALENDAR'[Date]),1,0) &lt;/LI-CODE&gt;
&lt;P&gt;(3) Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 06:12:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-sheet-dont-have-all-date/m-p/4371175#M173530</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-20T06:12:31Z</dc:date>
    </item>
  </channel>
</rss>

