I have a data table that has the following fields:
This table shows a list of attendance counts on various dates at different locations and different events.
I already have a measure that calculates the equivalent count last year:
I have a table of growth targets that has the following fields:
Read more
- LocationID
- EventID
- CountType
- Date
- Count
This table shows a list of attendance counts on various dates at different locations and different events.
I already have a measure that calculates the equivalent count last year:
- CALCULATE(sum('Total Attendance'[Count]),DATEADD('Date Table'[Date],-364,DAY))
I have a table of growth targets that has the following fields:
- LocationID
- EventID
- EventType...
Read more