Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
i have a table in powerpivot, in that table i have a column (say column name A)which has date and time , now i have added another column(say column name B) where i need to bring the date from column A but the format should be like "MM/DD/YYYY", means i want to get rid of the time and just want the short date to be copied to the B colum, i have tired format(columnA,"MM/DD/YYYY") but it returns the value in date n time format, pleaes let me know if there any DAX founction or formula which i can use to get the date without the time stamp on it.
Regards,
Aryan
@Saryan wrote:
i have a table in powerpivot, in that table i have a column (say column name A)which has date and time , now i have added another column(say column name B) where i need to bring the date from column A but the format should be like "MM/DD/YYYY", means i want to get rid of the time and just want the short date to be copied to the B colum, i have tired format(columnA,"MM/DD/YYYY") but it returns the value in date n time format, pleaes let me know if there any DAX founction or formula which i can use to get the date without the time stamp on it.
Regards,
Aryan
It works in my test, can you confirm that?
Try this:
Column = FORMAT(DATE(YEAR([DateTime]),MONTH([DateTime]),DAY([DateTime])),"MM/DD/YYYY")
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
6 | |
6 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
3 |