Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Dear all,
I have created a measure that shows dynamic calendar, which ranges from first date to last date of certain report.
However errors popped out, can you pls shed a light on this measure? Thanks.
----------------------------------------------
Do you have auto date/time enabled? If so I think you would need to use
DynamicDate =
ADDCOLUMNS (
CALENDAR (
MIN ( 'TicketList'[Created].[Date] ),
MAX ( 'TicketList'[Created].[Date] )
),
"Year", YEAR ( [Date] ),
"Quarter", ROUNDUP ( MONTH ( [Date] ) / 3, 0 ),
"Month", MONTH ( [Date] ),
"Week", WEEKNUM ( [Date] ),
"Month Year",
YEAR ( [Date] ) * 100
+ MONTH ( [Date] ),
"WeekDay", WEEKDAY ( [Date] )
)
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
User | Count |
---|---|
22 | |
20 | |
20 | |
13 | |
13 |
User | Count |
---|---|
41 | |
28 | |
25 | |
23 | |
21 |