Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have an automated flow which downloads and saves my excel sheet to a predefined location on a daily basis. I have connected the excel file to my BI desktop and I am trying to build reports.
However, the issue that I am facing is the date column looks like this
I am trying to create a new column which will contain only the date (as the time is not as relevant for my report at this point). I tried using this
but to no avail.
If anyone can kindly help me out with this, it would be highly appreciated!!
Solved! Go to Solution.
I managed to figure out a solution, although I did it in two steps. Maybe someone might know an easier way. However, still putting my method here for reference. First I created a column with the following DAX code
In order to make it a bit more concise, I then converted the long date into short date format using another columna and the following DAX code:
I managed to figure out a solution, although I did it in two steps. Maybe someone might know an easier way. However, still putting my method here for reference. First I created a column with the following DAX code
In order to make it a bit more concise, I then converted the long date into short date format using another columna and the following DAX code:
Hi @Humanoidhuman,
You should remove the letters at the end by doing this :
Date_2 =
VAR New_Date = LEFT('Table'[date], LEN('Table'[date]) - 3)
VAR UTC_Date = FORMAT(New_Date, "mm/dd/yyy")
Return UTC_Date
This would work after that.
Thanks so much @Daoud_H . I tried this. However, this basically just took out the timezone. Now it is displaying as
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 48 | |
| 42 |