<?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: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3479487#M132991</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629272" data-lia-user-login="AFuente7" class="lia-mention lia-mention-user"&gt;AFuente7&lt;/a&gt;&amp;nbsp;you can convert your lap times in Excel to seconds using the formula =TIMEVALUE("00:"&amp;amp;A1)*86400, where A1 is the cell containing the lap time in the format mm: ss,000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than, import your data into Power BI and create a new column with the formula&lt;BR /&gt;LapTimeFormatted = TIME(0,0,[LapTimeInSeconds])&lt;BR /&gt;where [LapTimeInSeconds] is the column's name containing the lap times in seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Change the data type of this new column to Time and then change the format to hh:mm:ss.000. This should display your lap times with milliseconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to display your lap times in a different format, such as mm: ss.fff or mm: ss,fff, you can create another column or measure with the formula&lt;/P&gt;&lt;P&gt;LapTimeFormatted = FORMAT([LapTime], "mm: ss.fff") OR&lt;BR /&gt;LapTimeFormatted = FORMAT([LapTime], "mm: ss,fff")&lt;BR /&gt;where [LapTime] is the column's name containing the lap times in Time format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also refer to the blog below for more details about the million-seconds workaround:&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Milliseconds-Duration/td-p/406698" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Milliseconds-Duration/td-p/406698&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this helps.&lt;BR /&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 16 Oct 2023 18:17:15 GMT</pubDate>
    <dc:creator>DallasBaba</dc:creator>
    <dc:date>2023-10-16T18:17:15Z</dc:date>
    <item>
      <title>SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469752#M132466</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an excel base data with many laptimes (from a car in a circuit), and the format used there is: mm:ss,000. For example: 1:35,577&lt;/P&gt;&lt;P&gt;(which means 1 min, 35 sec, 577 dec)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I import this data in BI, it takes also a date, so i've tried to use a different format in Excel and use seconds, so in the example above, would be 95,577s.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I've created a new column and used the formula =FORMAT(LapTime, "mm:ss,000) and it doesn't work. It gives me sth like 04:58:000, which doesnt make sense for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So anyone knows how to achive to have this format in BI?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 20:44:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469752#M132466</guid>
      <dc:creator>AFuente7</dc:creator>
      <dc:date>2023-10-10T20:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469800#M132472</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629272" data-lia-user-login="AFuente7" class="lia-mention lia-mention-user"&gt;AFuente7&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you convert the lap times to seconds in Excel by using the formula =TIMEVALUE("00:"&amp;amp;A1)*86400, where A1 is the cell containing the lap time in the format mm:ss,000. This will convert the lap time to seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then import the data into Power BI, and create a new column with the formula =TIME(0,0,[LapTimeInSeconds]), where [LapTimeInSeconds] is the name of the column containing the lap times in seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Change the data type of this new column to “Time”. This should give you a column with lap times in the format mm:ss.000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 21:08:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469800#M132472</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-10T21:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469847#M132475</link>
      <description>&lt;P&gt;Definetely it works!!&lt;/P&gt;&lt;P&gt;It's just missing the info of the tenths.&lt;/P&gt;&lt;P&gt;So now the result is:&lt;/P&gt;&lt;P&gt;0:01:37&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it's missing the 0:01:37,577 for example.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 21:40:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469847#M132475</guid>
      <dc:creator>AFuente7</dc:creator>
      <dc:date>2023-10-10T21:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469877#M132477</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629272" data-lia-user-login="AFuente7" class="lia-mention lia-mention-user"&gt;AFuente7&lt;/a&gt;&amp;nbsp;y&lt;SPAN&gt;ou can use the following DAX formula to correct the missing data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LapTimeFormatted = FORMAT(TIME(0, 0, [LapTimeInSeconds]), "mm:ss.000")&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Babatunde&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 21:52:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3469877#M132477</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-10T21:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3478652#M132952</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It's not working 100%. It's missing the tenths, and it looks like PowerBI just does not have this format available on his software (as Ive read in some foros)&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 11:03:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3478652#M132952</guid>
      <dc:creator>AFuente7</dc:creator>
      <dc:date>2023-10-16T11:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: SEE IN POWERBI A LAPTIME IN FORMAT mm:ss,000</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3479487#M132991</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629272" data-lia-user-login="AFuente7" class="lia-mention lia-mention-user"&gt;AFuente7&lt;/a&gt;&amp;nbsp;you can convert your lap times in Excel to seconds using the formula =TIMEVALUE("00:"&amp;amp;A1)*86400, where A1 is the cell containing the lap time in the format mm: ss,000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than, import your data into Power BI and create a new column with the formula&lt;BR /&gt;LapTimeFormatted = TIME(0,0,[LapTimeInSeconds])&lt;BR /&gt;where [LapTimeInSeconds] is the column's name containing the lap times in seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Change the data type of this new column to Time and then change the format to hh:mm:ss.000. This should display your lap times with milliseconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to display your lap times in a different format, such as mm: ss.fff or mm: ss,fff, you can create another column or measure with the formula&lt;/P&gt;&lt;P&gt;LapTimeFormatted = FORMAT([LapTime], "mm: ss.fff") OR&lt;BR /&gt;LapTimeFormatted = FORMAT([LapTime], "mm: ss,fff")&lt;BR /&gt;where [LapTime] is the column's name containing the lap times in Time format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also refer to the blog below for more details about the million-seconds workaround:&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Milliseconds-Duration/td-p/406698" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Milliseconds-Duration/td-p/406698&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this helps.&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 18:17:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SEE-IN-POWERBI-A-LAPTIME-IN-FORMAT-mm-ss-000/m-p/3479487#M132991</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-16T18:17:15Z</dc:date>
    </item>
  </channel>
</rss>

