In Power BI, I have a table with a column for Route, and the next column is Seconds. The seconds column displays the amount of seconds for that Route depending on the filters selected, I would like a third column showing "Days - Hours:Minutes:Seconds" ex: 1 - 07:50:35 instead of 114635. The seconds column mane in my table is DurationSec in the table [Sudbury Vehicle Line Time]. enter image description here
New column to display DD HH:MM:SS from column of total second
136 Views Asked by Robert Gauthier At
1
There are 1 best solutions below
Related Questions in POWERBI
- Does Power BI provide an OOTB Geographical Dimension Table
- How to change point color in Deneb while having lines be the same color as the legend
- SQL analytics endpoint and Semantic model not being created in MS Fabric Lakehouse
- Parse Dynamic Power BI table with selenium
- ALL() and REMOVEFILTER() Don't Work Correctly on My Report
- Market share growth versus last month, last year
- DAX query: trying to count unique entries that match two different criteria
- Azure Analysis Service, with an on prem gateway, in vnet
- Dax Many to Many Measure with Calender Date filters
- How to install NPGSQL and connect a PostgreSQL database to Power BI?
- Calculate average duration from text in power bi
- Power-BI / Dax: Count emails multiple times in a function based on the same dimension (#Order)
- Unable to filter in power bi dax query
- how can i obtain earliest day and lastest date per row/item number using Power Bi?
- Slicer Filtering on Drill-through Field Not Working
Related Questions in SECONDS
- LibreOffice Calc SECOND function returning wrong value - why?
- Countif rows are within 1,000 milliseconds or 1 second
- AnimatedContainer duration property does not effect the animation of container in Flutter
- In a DOS dir, list timedate of files including seconds (in the format "hh:mm:ss" instead of "hh:mm")
- Lookback that calculates differently depending on chart time being viewed
- Seconds and scale_x_time - HH:MM instead of HH:MM:SS
- VHDL Pulse counter in one second and in one minute
- How to preform correct delay system using TIMER_A on the TEXAS MSP432?
- Casting double chrono::seconds into millisecond
- set local time from timezone offset in seconds
- Google Sheets: How to Convert Column Values In mmm:ss or mm:ss Format to Minutes
- PHP Laravel - Finding the quantity of seconds in each hour between two timestamps
- When save an Excel to csv, the seconds automatically become 0?
- New column to display DD HH:MM:SS from column of total second
- Ignore seconds portion of TIMESTAMP field in query selection WHERE clause
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Day-h:min:sec =
switch(true(), [seconds]/86400>=1, rounddown([seconds]/86400,0)&" - " &format(rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0),"00")& ":" &format(rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0),"00")&":" &format([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600-rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0)*60,"00"),[seconds]/3600>=1, format(rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0),"00")& ":" &format(rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0),"00")&":" &format([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600-rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0)*60,"00"),
[seconds]/60>=1, "00:"&format(rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0),"00")&":" &format([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600-rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0)*60,"00"),
"00:00:"&format([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600-rounddown(([seconds] - rounddown([seconds]/86400,0)*86400-rounddown( ([seconds] - rounddown([seconds]/86400,0)*86400)/3600 ,0)*3600)/60,0)*60,"00") )