Forum Discussion
Anonymous
4 years agoNot applicable
Create a virtual table based on date and other slicer selection
I need to create a virtual table which will be a subset of fact table based on slicer selection and calendar date selection. Please help.
tamerj1
Community Champion
4 years agoHi Anonymous
ready to support you. Please explain the issue in details and provide sample data and screenshots
- Anonymous4 years agoNot applicable
Hi tamerj1
Can you please tell me how to add here date filters. It is not working.
SUMMARIZECOLUMNS(Transaction[Customer],FILTER('Calendar Date','Calendar Date'[Date] >= startDate && 'Calendar Date'[Date] <= endDate),"Sales", calculate(SUM(Transaction[SALES])))Thanks,Pallavi- tamerj14 years ago
Community Champion
What are StartDate and EndDate?
- Anonymous4 years agoNot applicablevar startDate = STARTOFQUARTER('Calendar Date'[Date])var endDate = ENDOFMONTH('Calendar Date'[Date])