Forum Discussion
Filter data per day in the report
- 6 years ago
Hi Anonymous ,
I don’t think you need to create another measure. Just remove "Trend data" column from your table visual.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous - Sorry, I'm not quite following. Maybe use a MAX or MIN aggregation? What would be an expected result from the sample data you provided?
Hi Greg,
The data is just an example. I have a lot of data around 6 Million.
I have created a filter on TrendDate in the report and created a measure like this to calculate the sum of FTE based on date selection on date slicer.
SumFTE= CALCULATE(SUM(Employee_WorkerTrend[FULLTIMEEQUIVALENCY]),
FILTER(Employee_WorkerTrend,
Employee_WorkerTrend[TRENDDATE]<=MIN(Employee_WorkerTrend[TRENDDATE]) &&
Employee_WorkerTrend[TRENDDATE]>=MAX(Employee_WorkerTrend[TRENDDATE])))
After using this measure in my report grid, I get below error.
The resultset of a query to an external data source has exceeded the maximum allowed size of '1000000' rows.
Is this a correct approach or should be managed in another way.
Note: I am using directQuery for this report.