Date Filter in report

Hi
I could not give date value as a parameter in the filter option of any report.It thows following error in different situations.But my object data type is datetime only.The errors are
1.
Exception Message :
ADC Server exception in OpenViewset).
Stack Trace :     
Server stack trace at Oracle.BAM.ActiveDataCache.Kernel.Server.DataStoreServer.OpenViewset(Modifier modifier, ViewsetOptions options, Int32 iTransactionID) at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(MethodBase mb, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs) at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg, Int32 methodPtr, Boolean fExecuteInContext) Exception rethrown at [0]: at Oracle.BAM.ReportCache.Server.ReportCacheServer.OpenViewSet(ViewSetBuilderBase oViewSetBuilder) at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(MethodBase mb, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs) at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg, Int32 methodPtr, Boolean fExecuteInContext) Exception rethrown at [1]: at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) at Oracle.BAM.Middleware.ReportCache.IReportCache.OpenViewSet(ViewSetBuilderBase oViewSetBuilder) at Oracle.BAM.Middleware.ReportCache.RemoteReportCache.OpenViewSet(ViewSetBuilderBase oViewSetBuilder) at Oracle.BAM.ReportServer.DataManager.OpenViewSet(String strModifier, ViewSetBuilderBase oViewSetBuilder, String strUserName) at Oracle.BAM.ReportServer.List.RenderList(String strViewsetId, String strDataset, String strXmlModifier, String strXmlProperties, Boolean bActive, String strInEditor, Boolean bEmail, String strUserName, Int32 iRecordsLimit, Int32 iClientWidth, Int32 iClientHeight, Int32 iBrowserTimezoneOffset, String strActiveDataDelay, String strActionButtonsXML)
====================
and
2.Exception Message:
     String was not recognized as a valid DateTime.
Stack Trace:
at System.DateTimeParse.ParseISO8601(DateTimeRawInfo raw, __DTString str, DateTimeStyles styles) at System.DateTimeParse.Parse(String s, DateTimeFormatInfo dtfi, DateTimeStyles styles) at System.DateTime.Parse(String s, IFormatProvider provider, DateTimeStyles styles) at System.DateTime.Parse(String s, IFormatProvider provider) at System.Convert.ToDateTime(String value, IFormatProvider provider) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.ConvertValueFromTypeAndString(DataTypes eDataType, String strValue) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.BuildTwoEntryFilter(XmlNode xnExpression, ComparisonOperator eComparisonOperator, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetFilterEntryComparisonExpression(XmlNode xnExpression, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetFilterExpression(XmlNode xnExpression, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetSingleEntryExpression(XmlNode xnExpression, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetFilterExpression(XmlNode xnExpression, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.AddFilters(XmlDocument oXmlModifier, Modifier oAdcModifier, String strXmlSchema) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetAdcModifier(String strXmlModifier, String strXmlSchema, Boolean bIgnoreRecordFields, Boolean bGroupsInOneLevel, XmlDocument oXmlProperties) at Oracle.BAM.Middleware.ActiveDataCache.ModifierFactory.GetAdcModifier(String strXmlModifier, String strXmlSchema, Boolean bIgnoreRecordFields, Boolean bGroupsInOneLevel) at Oracle.BAM.ReportServer.List.GetAdcModifier(Boolean bInEditor, Boolean bEmail, String strXmlModifier, String strViewsetSchema, XmlDocument oProperties) at Oracle.BAM.ReportServer.List.RenderList(String strViewsetId, String strDataset, String strXmlModifier, String strXmlProperties, Boolean bActive, String strInEditor, Boolean bEmail, String strUserName, Int32 iRecordsLimit, Int32 iClientWidth, Int32 iClientHeight, Int32 iBrowserTimezoneOffset, String strActiveDataDelay, String strActionButtonsXML)
=======
Please help us to solve these problems....
thanks in adv.
Simon S

Hi ,
I am getting same error if i use date time as parameter in the filter. Is there any solution for this issue?
thanks in advance.
vivek k

Similar Messages

  • Select Row as Data filter between Report viewer webpart

    Hi All,
    i have a requirement in SharePoint 2013 which has 2 SSRS Report Viewer webpart.
    i need to pass data which i select in First webpart to second webpart.
    is this possible how can i achieve this.
    Thanks for your time.
    Regards
    Bhasker
    hi

    Hi Bhasker,
    In my opinion, you can refer to the steps as below:
    1.Get the parameters from one SSRS Report Viewer Web Part:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/454ae44f-0d29-485a-8830-d2fb0e03f250/how-to-pass-parameters-from-report-viewer-to-report-server?forum=sqlreportingservices
    http://msdn.microsoft.com/en-us/library/ff487390.aspx
    2.Pass parameters to another SSRS Report Viewer Web Part:
    http://sharepoint.infoyen.com/2012/08/25/pass-multiple-filter-parameters-to-custom-report-viewer-web-part/
    http://stackoverflow.com/questions/2564178/passing-multiple-parameters-from-custome-webpart-to-reporting-services-report-vi
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • How to achieve the from and to date range in report builder 3.

    I AM TRYING TO CREATE ONE REPORT FROM REPORT BUILDER 3.
    WHERE I AM UNABLE TO DEFINE THE DATE RANGE.
    HOW TO ACHIEVE THE DATE RANGE IN REPORT BUILDER.
    NEED FROM DATE AND TO DATE FILTER IN REPORT BUILDER FOR PK DATE.

    Hi Ganesh,
    According to your description, you create a report in Report Builder 3.0, and create two parameters FromDate and EndDate, now you want to use the parameters in your MDX query, right?
    If in this case, here is a sample query for your reference.
    select
    {[Measures].[Internet Sales Amount]
    } on columns,
    {[Date].[Date].members} on rows
    from(
    select
    STRTOMEMBER("[Date].[Date].&["+@StartDate+"]"):STRTOMEMBER("[Date].[Date].&["+@EndDate+"]")
    ) on columns
    from [Adventure Works]
    Reference:STRTOMEMBER
    Regards,
    Charlie Liao
    TechNet Community Support

  • BO Report Mobile - date filter

    Hello!
    I have a report in BO Mobile developed with web intelligence tool with two fields of sales values​​, one daily and one monthly. I'm having the following problem: when I select a specific date to the monthly values ​​are equal to the daily values​​.
    Could someone help me.
    It is possible to apply the date filter, make the monthly accumulated values ​​remain?
    Sincerely.
    Gleziane

    Hi
    At Universe level you can create two measure values like daily sales and MTD monthly sales =@
    suppose say yu run the query on date 19-5-2014
    for First measure daily sales where date =@prompt value (i.e date prompt)
    for 2nd measure Monthly sales where date<=@prompt value AND Month=month(@prompt )
    the above is for MTD
    Hope this helps u
    Thanks & Regards
    Sunil

  • Filter data dynamically in reports

    Hello,
    Is it possible to filter a report dynamically?
    Ex:I have a table with 1 million rows.In a report i want the data to be displayed dynamically based on a dashboard prompt.
    I know i can do static filters for a column like ticket number in ('123','234').But, what i want to do is "select date,year where ticket number in (prompt for ticketnumber)" some thing like this instead of static values.
    Is it possible?Please let me know.
    Thanks in advance

    Yes. You can do it. I assume that you talk about answer when you write report.
    Check this oracle by example tutorial : Section "Using Dashboard Prompts and Presentation Variables"
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/saw/saw.html#t8

  • Issue with Date used to Filter a Report

    I have the following source for a report. The source was working correctly before and I am trying to add a date filter to it.
    q VARCHAR2(32767); -- query
    w VARCHAR2(4000) ; -- where clause
    w2 VARCHAR2(4000) ; -- where clause for salesrep
    w3 VARCHAR2(4000) ; -- where clause for agent
    w4 VARCHAR2(4000) ; -- where clause for date range
    we VARCHAR2(1) := 'N'; -- identifies if where clause exists
    BEGIN
    q := 'SELECT "TBLCALL"."CALLID", "TBLSALESREP"."LNAME" || '', '' || "TBLSALESREP"."FNAME" as "SalesRep", "TBLAGENT"."LNAME" || '', '' || "TBLAGENT"."FNAME" as "Agent", "TBLAGENT"."AGENTID", "COMPLETEDATE", htmldb_util.get_since("CREATEDATE") as "Age", "CREATEDATE",
    "TBLDIRECTOR"."DIRECTORNAME",
    decode("CREQUESTID",NULL,''None'',"CREQUESTID") as "# REQUESTS", "REQUESTSTATUS", "ESCALATIONNAME" '
    ||
    ' FROM "#OWNER#"."TBLAGENT", "#OWNER#"."TBLSALESREP", "#OWNER#"."TBLDIRECTOR", "#OWNER#"."TBLCALL", "#OWNER#"."VW_CALLREQUESTS", "#OWNER#"."VW_CALLSTATUS", "#OWNER#"."VW_CALLESCALATION" '
    ||
    ' WHERE "TBLAGENT"."AGENTID" = "TBLCALL"."AGENTID"
    and "TBLSALESREP"."DIRECTORID"="TBLDIRECTOR"."DIRECTORID"
    and "TBLCALL"."CALLID"="VW_CALLREQUESTS"."CALLID"(+)
    and "TBLCALL"."CALLID"="VW_CALLSTATUS"."CALLID"(+)
    and "TBLCALL"."CALLID"="VW_CALLESCALATION"."CALLID"(+)
    and "TBLSALESREP"."SALESREPID"="TBLCALL"."SALESREPID" ';
    IF :P1_COMPLETED = '0'
    THEN
    w := ' COMPLETEDATE is null';
    we := 'Y';
    END IF;
    IF :P1_COMPLETED = '1'
    THEN
    w := ' COMPLETEDATE is not null ';
    we := 'Y';
    END IF;
    IF :P1_SELECT_SALESREP != '-1' THEN
    w2 := ' AND TBLCALL.SALESREPID= :P1_SELECT_SALESREP ';
    ELSE
    w2 := '';
    END IF;
    IF :P1_SELECT_AGENT != '-1' THEN
    w3 := ' AND TBLAGENT.AGENTID= :P1_SELECT_AGENT ';
    ELSE
    w3 := '';
    END IF;
    IF :P1_STARTDATE is not null AND :P1_ENDDATE is not null THEN
    w4:= ' AND TBLCALL.CREATEDATE between ' || to_date(NVL(:P1_STARTDATE,'01/01/1900'), 'MM/DD/YYYY') || ' AND ' || to_date(NVL(:P1_ENDDATE,'12/31/9999'),'MM/DD/YYYY');
    ELSE
    w4 := '';
    end if;
    IF we = 'Y' THEN
    q := q || ' AND ' || w || w2 || w3 || w4 ;
    ELSE
    q := q || w2 || w3 || w4;
    END IF;
    RETURN q;
    END;
    Each time I try to run the page... the report gives me the following error:
    failed to parse SQL query:
    ORA-00904: "OCT": invalid identifier
    It looks like a date format issue, but I have tried several things to resolve it and it still does not work... What can I do?

    I think you have a problem with format masks.
    Check the format masks that are used in P1_STARTDATE and P2_STARTDATE

  • Not getting data in OBIEE report while pulling columns from different DB

    Hi All,
    I am creating a report in OBIEE 11g which uses Table A and table B which are joined in both physical layer and BMM layer. But somehow I am not getting any data in the report where as data is actually present for the matching joining columns. However when I made one of the tables (Table A ) as a driving table, I am getting data but only with a filter applied in the report which restricts the data to few records. If the filter is removed, I get an error which is " A Drive Table join exceeded the limit of XXX backend database queries".
    Could anyone tell me what can be the issue? Other than using driving table, is there any alternate method to resolve the issue?
    Thanks In Advance,
    Anju

    The error is due to the setting MAX_QUERIES_PER_DRIVE_JOIN in the database features table that controls and tunes driving table performance. Also, try to follow these blogposts to do cross-database joins/federated queries: http://oraclebizint.wordpress.com/2008/03/19/oracle-bi-ee-101332-cross-database-joins/ and http://www.rittmanmead.com/2007/10/reporting-against-multiple-datasources-in-obiee/
    Please assign points if helpful/correct.

  • Problem with DATE in Interactive Report

    Hello,
    In Interactive Report when I click on the header of any column with DATE datatype, nothing happens due to Javascript error:
    Line: 2
    Char: 14838
    Error: Expected identifier, string or number
    Code: 0
    Click on any other column works perfectly as well as sorting by DATE column from Action Menu.
    I tried to set different format masks for my DATE column and for Application Date Format, but it didn't help.
    Finally I found out that this error disappeared when in properties of my DATE column in "List of Values" section I set "Report Filter Date Ranges" = 'Past' instead of 'All'. In this case I get the list with values "Last 5 Years", "Last 2 Years", etc, but not with "Next Hour", "Next 2 Hours", etc...
    Can someone help me on this issue, because this functionality might be usefull and also it's not very convinient to change this property for all date columns in all Interactive Report.
    By the way, my database version is 9.2.0.5 - maybe it can cause such problem?
    Best regards,
    Vladimir

    Hi Marco,
    1) French Canada (fr-ca)
    2) This filter works
    More informations about the error when I call the function gReport.controls.widget():
    &lth;div id="apexir_DT" style="text-align: center;" onclick="gReport.controls.widget(this.id)"&gth;Date de naissance&lth;/div&gth;
    *************POST*************
    flowid     48579
    p_flow_step_id     5
    p_instance     1412541985987586
    p_request     APXWGT
    p_widget_action     SORT_WIDGET
    p_widget_mod     CONTROL
    p_widget_name     worksheet
    x01     5775894815382747091
    x02     5775899227924757464
    x03     apexir_DT
    *************RESPONSE*************
    {"dialog":{"id":"1966481623126322611","hide":["apexir_info","apexir_computation"],"coltype":"DATE","filter"
    :false,"uv":true,{"dialog":{"uv":true,"row":[{"V":"Failure<br />ORA-20001: get_dbms_sql_cursor error
    ORA-00923: FROM keyword not found where expected"}]}}
    Louis-Guillaume
    Homepage: http://www.insum.ca
    Blog: http://insum-apex.blogspot.com

  • How to handle date prompt in report

    Hi I have date column on database as timestamp.
    Now need to apply filter in report based on date prompt.
    Do i nee to cast it in Date format..or how i can do it.
    thanks,

    Hi User,
    Which versionof obiee are you in? If you are on 10.1.3.4.1 version, apply PATCH 9492821 to fix this issue.
    Can you do the following checks,
    In the repository physical layer, set the column to have a data type of date
    In the BMM layer, where the column is mapped, edit the column mapping to contain a CAST function to cast as date
    Regards,
    Dpka

  • SP2013 - Date Filter Web Part looses connection when used in a site template

    Hi,
    I created two table reports in SQL Reporting Services 2012 and inserted in a web page using the Reporting Service Report viewer in SharePoint 2013 with CU Dez 2013. The two reports require two dates and I use two date filter web parts (I did not try the
    date range solution I saw in the fórum).
    So the user inputs the two dates in date filters that send the information to thereports in the same page.
    They work in the site and I saved it as template. However when I create e new site using it as a templates, the date filter connections are broken and of course, they did not work.
    For another report where I usea text filter, it worked without any problem in the template.
    Does anybody know any workaround?
    Thank you.
    Best regards, Ricardo Segawa - Segawas Projetos / Microsoft Partner

    Hi ,
    The new site based on the saved site template will generate new ID for date filter web part, in the web part page the SPWebPartConnection "ProviderID" value seems still to reference the original date filter web part ID (see from
    SharePoint Designer), as a workaround we can re-configure the web part connection from the web part page manually or programmatically from that new site web part page.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/8d98206d-b41f-4ee4-b537-a4bf5cec0434/sharepoint-2010-save-site-as-template-webpart-connections-broken?forum=sharepointgeneralprevious
    http://sympmarc.com/2007/09/20/removing-a-web-part-connection-in-sharepoint/
    Thank
    Daniel Yang
    TechNet Community Support

  • Data Filter in Data Selection -DM

    Hi ALL,
    I am facing problem in loading blank value data to BPC. Scenarion is
    Account In BI has Hier as ACT_1
                                              ACT_2
                                             ACT_3
                                             ACT_4
                                             UNassigned - In data base it has balnk and when you report in BI you can see as #-(Un assigned as a text descrption)
    in my data manager i need to select the or filter the accounts by Hier as shown above
    i can select as ACT_1, ACT_4 but i need to select the blank value also i need to set the filters for unasigned but BPC data manager package will not allow the UNASSIGNED Value to be select.
    Any idea on this can i handle some ho in transformation,
    Thanks in advance
    Regards
    Ram

    Hi,
    Based on my test, Data filter does not lost when we re-open the file in Excel 2013. Thus, I think it is not a bug. Thus, please provide us more information to assist you better.
    Did this issue occur with the previous file that created with Office 2010?
    Have you tried to re-create a new file to test?
    If this issue occur only with the previous file that created with Office 2010, this issue might be caused by the file compatibility, pleases use compatibility checker to update the files:
    https://support.office.com/en-ca/article/Check-file-compatibility-with-earlier-versions-d9856881-5875-4c58-915f-06859b2943a7
    If this issue occur with all files even with a new file, please try to repair Office 2013.
    Hope it's helpful.
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • How to filter a report by a predefined but reduceable list of words?

    I am trying to filter a report by several different input values.
    I want to be able to search by date, site, multiple regions (DEV_KEYS), multiple alarm types (ALM_TEXT) and omit entries containing a predefined, but reduceable, list of words (the E#s).
    I want the E# variables to be a list with default values (eg. Alarm, Hi, Lo, Standby) but I want to be able to filter by any combination of these. I was thinking of using checkboxes so that I can tick or untick the words to filter depending on what search I'm doing, but I am unsure how to use them like this. At this point I have them in a textbox each and the search will omit the entires when the text is there - what I want. If I delete the word and click Go the search brings back no results. However if I enter some obscure string (eg i5wqii) the word that I replaced will no longer be omitted - what I want. I don't want the user to have to enter something random into a text box to not search for a word.
    eg filter by all
    + Alarm
    + Hi
    + Lo
    + Standby
    eg filter by Hi 'only'
    - Alarm
    + Hi
    - Lo
    - Standby
    Is it possible to do what I am trying to do? Any help appreciated.
    Current SQL for Report:
    select * from
    select DATE, MICROSEC, DEV_KEY, ALM_TEXT
    from ALARMS@dblink
    where DATE >= :P17_DATEFROM
    and DATE < :P17_DATETO
    and DEV_KEY like :P17_SITE||'%'
    and DEV_KEY like '%'||:P17_DK1||'%'
    and DEV_KEY like '%'||:P17_DK2||'%'
    and DEV_KEY like '%'||:P17_DK3||'%'
    and ALM_TEXT like '%'||:P17_AI1||'%'
    and ALM_TEXT like '%'||:P17_AI2||'%'
    and ALM_TEXT not like '%'||:P17_E1||'%'
    and ALM_TEXT not like '%'||:P17_E2||'%'
    and ALM_TEXT not like '%'||:P17_E3||'%'
    and ALM_TEXT not like '%'||:P17_E4||'%'
    and ALM_TEXT not like '%'||:P17_E5||'%'
    and ALM_TEXT not like '%'||:P17_E6||'%'
    )

    figured out a way to do it. Put each of Alarm, Hi, Lo and Standby in their own select list with the other option as '-----' with output value as some string that will never appear in the field.
    If anyone knows how to do it with checkboxes though i'm all ears.

  • How to run webi report automatically with the current date/system date in webi report

    Hi Friends,
    I have a webi report which has a date prompt now. Based on the selection that user makes while running a report, he will get the related data for that particular date selection. Now I want to make that date prompt automated that is the report should run automatically based on the system date daily on scheduling.
    I want it to run current day automatically without have to go in and pick the date in webi report. I will be scheduling the webi report. Can you please let me know how to achieve this functionality of running a webi report automatically with a system date.
    Please let me know if I couldn't make you understand so that I will write with an example.
    Waiting for your valuable solutions.
    Thanks in advance.
    Regards,
    Bhaskar

    Hello Bhasakar,
    1.Create sysdate object in the universe
    2.Create another query in webi and select only sysdate object
    3.In the original query drag the Day object in the filter pane and choose the "List of values" from another query.and select the sysdate object from the second query.
    So your report always will run for sysdate...
    regards,
    Naveen D

  • Date filter is coming in physical query

    Hi,
    I have following problem,please help me.
    1.My OBI in connecting Vertica Database through ODBC 3.5.
    2.It's working fine for all report and if I give date filter condition then in physical query ,which is sending by OBI to Vertica doesn't have date filter condition:
    Ex: I have Call Type,and Date as dimension table and Call Mesures as fact table
    when I am selecting in answer select Call type name,measure1 for a particula Call type='Dropped'
    Physical Query generated by OBI as
    Select Call type name,mesure 1 from call_type_dim a,call_measures b where a.call_type_key=b.call_type_key and call_type_name='Dropped'
    But when I am loking for particular calandar date(for 07/27/2009:
    it's generating following query:
    Select Call type name,mesure 1 from call_type_dim a,call_measures b,date c where a.call_type_key=b.call_type_key and call_type_name='Dropped' and c.calandar_date_key=b.calandar_date_key
    But in logical query it's showing calandar_date='07/27/2009'
    I am expecting OBI should generate query:
    Select Call type name,mesure 1 from call_type_dim a,call_measures b,date c where a.call_type_key=b.call_type_key and call_type_name='Dropped' and c.calandar_date_key=b.calandar_date_key and c.calandar_date='07/27/2009'
    Where I have done wrong ,please help for Oracle DB i.e OCI 10g ,it's generating correct physical query

    Check cache settings.
    prefix this in prompt
    set variable disable_cache_hit=1;
    btw: Did you get a chance to look at https://forums.oracle.com/thread/2594287

  • Date filter in preview

    Hi there,
    Can anyone help me to see the error of my ways with date filters when using Preview and Designer to create reports.
    If I create a Excel 2013 workbook with date filter on Power View they appear as they do in Excel and the current version of Power BI (O365 Add on)... see first Pic below.
    If I use the Power BI Designer, or create a Report in the Preview the only filter 'structure' applied to dates is the checkbox structure for each date, and it's not functional either as the list of dates only shows approximately 30 instead of each day for
    the last 5 years (which is the content of the data)...  see second pic below
    I was expecting any date filters to show as per the first Pic in all cases.
    Is this just a bug??
    Expected to see (uploaded Excel 2013 Workbook):-
    but we see this (using the same model from the uploaded workbook):
    The Power Query has the column 'added' defined as a date.
    Thanks,
    Tim
    Thank you for you time folks!

    Hi Bruno, thanks for the reply to the post.
    The issue here is the way in which the UI works with this amount of data.  So there are 1600 dates I'm the model and the UI only shows a small list of the dates.  And you can't change the filter 'type' to allow rhea selection for a range of dates
    like you can in the Excel 2013 Power View.  This is odd because when you upload the Excel created Power View the functionality exists in the Power BI UI.
    The issue is when using a date as a filter you can't appear to select the type of filter to allow the entry of a date range.  This just appears odd, or a bug?? i'm going to use the good old date dimension table to allow the selection but most end users
    of Power BI won't have rhe knowledge or the skills to build star or snow flakes... therefore this seriously restricts functionality in my view...
    Hope MS resolves soon...
    Thanks again.  tim
    Thank you for you time folks!

Maybe you are looking for