Forum Discussion

StephenK2022's avatar
StephenK2022
Frequent Visitor
2 years ago

Wrong date format on Dashboard

Hi,

 

Hopefully this is a simple one.

 

I am using a dashboard to link into Power Apps, my background data is recorded in UK format (DD-MM-YYYY) but when I upload to the dashboard it converts it to US format (MM-DD-YYYY) which is causing errors in the visuals.

 

Is there a way to stop this from happening? As you can see in the snap below - There is data for week 40 of 2024 which obviously hasn't happened yet.

 

 Thanks in advance!

1 Reply

  • mohitkumawat's avatar
    mohitkumawat
    Impactful Individual

    Hi  ,

    you can try the below code if this works.

    formatting in Power Apps: :-Use the Text function with a format specifier to display the date in the desired format (DD-MM-YYYY). Here's an example: Text(YourDateVariable, "[DD]-[MM]-[YYYY]")

    StephenK2022