calendars
3 TopicsSame day Previous week DAX
Hi All, I have a table containing daily incident request raised by team members with columns - start date of INC, end date of INC, INC number, status, comments. Here, i need to build a report table showing date wise incident count and previous week count for each date. Eg: if today is 17/04/2023, then it should display count of incidents on that date along with previous week count. i.e. count of 10/04/2023 in same row. I have tried multiple dax formulas but nothing working. Either it returns day count or blank values. Please find attached image for reference.349Views0likes0CommentsM code for a DAX expression
Hi everyone, I need to transform this DAX expression in M: Week= YEAR(Calendar[Date]+26-WEEKNUM(Calendar[Date],21)) & "-" & IF(WEEKNUM(Calendar[Date],21)>=10, WEEKNUM(Calendar[Date],21), "0" & WEEKNUM(Calendar[Date],21)) which calculates the week of the year followed by the year for each date of my calendar, according to the European system: Can you help me? Many thanks!566Views0likes1Commentrelative fiscal QTR
Hi guys, I have created a relative date filter usings curbals video https://www.youtube.com/watch?v=gGNxKluPFNw Now i want to create on but for Quarter, the thing is PBI has QTRs set to jan to dec rather than November to October which is what i need , so we get a table like this when aplying this formula Relative QTR = DATEDIFF(TODAY(),'Calendar'[Full Date],QUARTER) month qtr Fiscal quarter qtr pbi 1 1 1 2 2 1 3 2 1 4 2 2 5 3 2 6 3 2 7 3 3 8 4 3 9 4 3 10 4 4 11 1 4 12 1 4 How can i set the Quarter to the range i want? ThanksSolved756Views0likes1Comment