Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
October 24, 2024
You can use the FORMAT function in DAX to control how dates are displayed in Power BI measures. Here’s a simple example:
FormattedDate = FORMAT([DateColumn], "MMMM DD, YYYY")
This will format your date as “October 23, 2024” (Month Day, Year). You can use different format strings depending on your needs:
If you’re working with null or blank values, you can handle them like this:
FormattedDateWithCheck = IF(ISBLANK([DateColumn]), "No Date", FORMAT([DateColumn], "MMMM DD, YYYY"))
This ensures that blank values are displayed as “No Date” instead of causing errors.