Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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")
User | Count |
---|---|
10 | |
5 | |
4 | |
4 | |
3 |
User | Count |
---|---|
14 | |
9 | |
5 | |
5 | |
4 |