Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Power BI report converting UK date to US Automatically

I am trying to produce a report that will list an individuals references for a person from earliest to latest. If an individual is still at their current position then the "End Date" field is blank. To make it more user friendly I want this to say "To Current" if the field is blank. 

 

I do this by converting the "End Date" field to text format and then calculating the following column:

 

NewEnd = IF(ISBLANK([End Date]), "To Current", [End Date])

 

This works in Desktop and gives me the following results:

 

EmployerStart DateNew End
A Bank01/01/2020To Current
A University01/01/201931/12/2019

 

However when I publish to Service it reformats the date to US format as such:

 

EmployerStart DateNew End
A Bank01/01/2020To Current
A University01/01/201912/31/2019

 

I do not know why when converting "End Date" to Text it reformats the date on Service but not on Desktop (and my browser settings are for English(UK)).

 

If anyone has any advice it would be greatly appreciated!

1 ACCEPTED SOLUTION

hi  @Anonymous 

If so, you could also try to adjust the formula as below:

NewEnd = IF(ISBLANK([End Date]),  "To Current",FORMAT([End Date],"dd/mm/yyyy"))

Result:

6.JPG

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-lili6-msft
Community Support
Community Support

hi  @Anonymous 

In power bi service, this depends on your browser language Settings.

just refer to this blog:

https://nform.com.au/how-to-change-the-date-format-in-the-power-bi-service/

 

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-lili6-msft ,

 

Unfortunately, my browser language is English(United Kingdom) and on Power BI it is set to default browser language.

 

Another thing is if this was the case then it would affect the start date as well, whereas currently start date is not affected at all and only the ambiguous dates in end date are.

hi  @Anonymous 

If so, you could also try to adjust the formula as below:

NewEnd = IF(ISBLANK([End Date]),  "To Current",FORMAT([End Date],"dd/mm/yyyy"))

Result:

6.JPG

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

That seems to have fixed the issue thank you! I didn't know you could convert a Date type into a Text type in an if statement like that.

ibarrau
Super User
Super User

Hi. The date will depend on the browser by default. You may be able to change this for a workspace. If you go to schedule refresh and then to "General" tab (I don't remember other way to get here). You will find this menu. Change the default if you want it to be the same for all users.

language settingslanguage settings

 

Regards,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Anonymous
Not applicable

Unfortunately this does not solve the issue and has already been tried.

 

One of the weirder parts is if the date is something like 24/05/2017 for example it knows it must be of the format DD/MM/YYYY as otherwise it would be invalid. However if the date is of an ambiguous format such as 06/05/2005 it will switch the format to MM/DD/YYYY from DD/MM/YYYY, meaning that there are two different date formats in the same column.

 

I have managed to create a work around to the problem now but really just want to try and understand why when publishing from Desktop to Service this inconsistent change of date format happens.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.