Forum Discussion
New table with measures values
- 9 years ago
Hi lcd,
It is the expected behavior.
Not like measures, calculate columns/tables(like your myMeasureTable) are computed during database processing(e.g. data refresh) and then stored in the model, they do not response to user selections on the report(like a Slicer).
So it is not possible to create a calculate table which can change dynamically with user selections on the report. :smileyhappy:
Regards
Thanks Reid, but I need more help and so I give more information:
My 3 tables:
- EXPENSES: it's a fact table with expenses transactions.
- CALENDAR: It has all the dates I need and it's linked with EXPENSES by a date column.
- COMPANY: it's a table with companies info and it's linked with EXPENSES by companyID. In this table I have the measure:
myMeasure = TOTALYTD(sum(EXPENSES[AMOUNT]);CALENDAR[DATE])
Now, I need to have a new table with myMeasure:
myMeasureTable = SELECTCOLUMNS(COMPANY;"companyId";COMPANY[companyId];"myMeasureField";COMPANY[myMeasure])
When I use a visual with COMPANY[myMeasure] and a slicer with CALENDAR[DATE], I can control the visual with the slicer.
But when I use a visual with myMeasureTable, the slicer with CALENDAR[DATE] doesn't work.
Thanks
Hi lcd,
It is the expected behavior.
Not like measures, calculate columns/tables(like your myMeasureTable) are computed during database processing(e.g. data refresh) and then stored in the model, they do not response to user selections on the report(like a Slicer).
So it is not possible to create a calculate table which can change dynamically with user selections on the report. :smileyhappy:
Regards