Forum Discussion
Matrix problems with calendar
- 5 years ago
mohsenask , I forget to ask. Does the date has a timestamp? And that was the reason. I changed the format of the booking date and checked.
Created a new date column(Without time) and used that is joined. Working now. Please find the find attached after signature
example in case file does not open . One of the two ways, a new column
Date = [booking Date].date
or
Date = date(year([booking Date]),month([booking Date]),day([booking Date]))refer my video, where I covered why TI fails: https://www.youtube.com/watch?v=OBf0rjpp5Hw
- 5 years ago
amitchandak - thanks i got the file and the solution works.
however i had another measure that is applied to the visual for calculating MoM bookings count.
Bkngs_PrevMnth = CALCULATE(DISTINCTCOUNT('vw_SalesAnalysis_Svcs'[Bookings]),PREVIOUSMONTH(vw_SalesAnalysis_Svcs[Bk Date].[Date])) gives me the count for previous month of Nov 2020 only. No other months show the previous month dataā
the below formula gives me no prev month count at allBkngs_PrevMnth = CALCULATE(DISTINCTCOUNT('vw_SalesAnalysis_Svcs'[Bookings]),DATEADD(vw_SalesAnalysis_Svcs[Bk Date],-1,MONTH))ā
amitchandak - I need two date tables because they are both different visuals on different pages in the same report
- amitchandak5 years agoSuper User
mohsenask , This display means you are displaying the wrong date table. Or the table is missing joins(all value are the same) and also dates are missing in date table, because values are null (less date in date table)