filter a column
-
שבת 21 אפריל 2012 16:46
Good afternoon.
Prompt please how to filter a column ' Date ' for example from 01.02.2011 till .
Thanks.Example of a file
http://files.mail.ru/Q6CNR8
כל התגובות
-
יום שני 23 אפריל 2012 09:42מנחה דיון
-
יום שלישי 24 אפריל 2012 07:31Good afternoon, Challen Fu thanks for the answer. But I have no access to write inquiries to a database.
I would like to understand, whether it is possible in PowerPivot to do column group with dates (on months, quarters, weeks, years) as it is possible to do it in Excel2010? I apologize for my bad English. -
יום חמישי 26 אפריל 2012 02:41
Unfortunately filtering date range is not supported (yet) in PowerPivot.
As a workaround, you can
1) create an integer calculated column that converts your date value to int value (eg. '01/02/2011' to '20110102'), then you can filter on this column; or,
2) create a measure (eg. myDate) and make it like (=CALCULATE(SUM([MyColumn]), DATESBETWEEN([DATES], "start date", "end date")). Then use this measure as the slicer - but you have to update it everytime you want a different value.
I'd recommend using the first option if I were you.
-- This posting is provided "AS IS" with no warranties, and confers no rights
- סומן כתשובה על-ידי Egoriy יום חמישי 26 אפריל 2012 11:13
-
יום חמישי 26 אפריל 2012 11:13Chu Xu many thanks for the answer!