Forum Discussion
e175429
Helper IV
1 year agoTracking Totals by Dates
Hey all, This is a sample of my data. The actualy data has over 15k records and I would love to upload the whole thing here to make it easier but I don't know how. I am trying to track the pr...
SreeniBattula
Helper II
1 year ago1. Create a Date table using CALENDAR(MIN(PreparedDate), MAX(PreparedDate))
2. Create following 2 measures
Count of Prepared =
CALCULATE(
COUNTROWS(Base),
NOT(ISBLANK(Base[PreparedDate])),
USERELATIONSHIP(Base[PreparedDate], 'Date'[Date])
)
Count of Approved =
CALCULATE(
COUNTROWS(Base),
NOT(ISBLANK(Base[ApprovedDate])),
USERELATIONSHIP(Base[ApprovedDate], 'Date'[Date])
)
3. Buld the visual using year and month from Date table and the mesures from the Base tabel
- e1754291 year ago
Helper IV
Thank you for your assistance.
I created the date table:
I am getting the following error: