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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Divya904
Helper III
Helper III

Remove timestamp from date

Hi Experts,

I have created a date calendar using DAX as below:

 

Date =
GENERATE (
CALENDARAUTO(),
VAR currentDay = [Date]
VAR day = DAY( currentDay )
VAR month = MONTH ( currentDay )
VAR year = YEAR ( currentDay )
RETURN ROW (
"day", day,
"month", month,
"year", year )
)

 

 I have set the the date field format as dd/mm/yyyy and data type as text and created a slicer using this. 

When publishing to web service, the slicer come up with date and time.

date01.PNG

 

Please let me know how can i remove the timestamp in the slicer.

Thanks.

 

 

 

 

 

6 REPLIES 6
Phil_Seamark
Microsoft Employee
Microsoft Employee

HI @Divya904

 

Maybe something like//

 

Date =
GENERATE (
CALENDARAUTO(),
VAR currentDay = [Date]
VAR dayShort = FORMAT(currentDay,"dd/MM/yyyy")
VAR day = DAY( currentDay )
VAR month = MONTH ( currentDay )
VAR year = YEAR ( currentDay )
RETURN ROW (
"day", day,
"short day" , dayShort,
"month", month,
"year", year )
)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi Phil,

 

Thanks for your reply.

Tried the same DAX calculation that you have provided. But still getting the time stamp in the slicer. 

Here is the screenshot from Desktop.

 

Date02.PNG

 

 

Thanks and Regrads,

Divya

Hi @Divya904

 

It seems odd.  I tried to replicate it here and it works ok for me up in the web service.

 

I've attached a simple example PBIX file that I used.  Can you upload that and see if it does the same thing?

 

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi Phil,

Thanks for your prompt and sharing the .pbix file.

In your Date slicer, there is time as well. Please let me know how can we remove this time, so that we have just dates in the dropdown.

Thanks

 

Regards,

Divya

 

 

 

I'm not sure sorry.  It's interesting that it works fine for me.  It suggests a setting in your Power BI Tenant such as region, or locale


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

I know, date formats works differenctly in different machines. This is because of Power BI desktop regional settings and Browers settings for Power BI web service

I have set,

Power BI desktop , regional settings to English Australia

Web service setting is default Browser setting, which is English UK

System language and Locale setting is English Australia

 

Thanks.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.