Your company requirement is to define a fiscal year that starts from May. You need to create a common date for a data model using DAX. How should you complete the DAX expression? To answer, select the appropriate option. DATE = CALENDARAUTO(5) DATE = CALENDAR(4) DATE = CALENDAR(5) DATE = CALENDARAUTO(4)

To define a fiscal year that starts from May in DAX, you should use the CALENDAR function to specify the start month. The correct option to create a common date for a data model with a fiscal year starting in May is:

DATE = CALENDAR(5)

This will create a calendar table starting from May.