Total Messages vs. Day & Hour in Power view chart

Table-1 has:
Date                                         Number of Msgs 
05-01-2015 12:45:26                      2
06-01-2015 16:48:00                      4
07-01-2015 10:15:25                      2
07-01-2015 11:30:21                      3
07-01-2015 12:30:25                      5
07-01-2015 13:15:00                      7
07-01-2015 13:30:00                      2
07-01-2015 13:45:00                      4
07-01-2015 14:00:00                      3
Now let's say the current system time is 14:05:00 on 07-01-2015 
when I select Hour filter, the PowerView chart should display 'Number of Msgs' vs X-Axis (last one hour with 15 minutes interval).
when I select Day filter, the PowerView chart should display 'Number of Msgs' vs X-Axis (last 24 hours with 1 hour interval).
I am able to achieve Week filter, Month filter, Year filter. Struggling to get Day and Hour filters in place as it involves time section of a DateTime column.
[Day filter showing everything at 12:00:00AM] Image at:https://www.dropbox.com/s/uj7r8zugal9vx2n/day%20filter.JPG?dl=0 
[for more details: [email protected]]

Hi Manjuath.Hireholi,
Thanks for posting in MSDN forum.
This forum is for developers discussing devleoping issue involve Excel. For example that use Excel object model to automate Excel application.
Based on my understanding the issue is reltaive to Power View or Power BI, I would like to move it to
Power View forum.
The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
Thanks for your understanding.
Regards & Fei
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Power view chart gives warning if no of items to display is large. Is there a way to remove it?

    Hi,
    Power view chart gives warning if no of items to display is large. Is there a way to remove it?
    Thanks,
    Bhawna

    I think my issue is related, but with a different warning:
    It is showing the locations on the map, so i guess there is a connection.
    What is the maximum number of items to show on a powerview map? I'm now using a report with 1500 locations, which is already too many apparently?

  • Unable to read data of bigger length in Power view chart

    Hi,
    Actually the length of data on x-axis of my chart in power view is very big so I am not able to read it properly. Can we do something in this regard so that the data becomes readable. Decreasing text size doesnot work. Please help.
    Thanks,
    Bhawna.

    Bhawna,
    Is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Is there any plan to make Power View (charts and report) more customizable?

    Hi,
    I just was playing with Power tool chain in Excel and office 365, this a nice product well down.
    I have a question about the whole idea, is there any plan to make charts more customizable for example user will be able to show the current filter value in the chart or view title (is good while  drill downing) or some simple stuff like showing the
    pie value not in tool bar but indicators in the chart itself  or changing the type of chart while drilling down (start with a column chart then drill to a pie chart) or...
    Or more generally some programming framework to customize Power View , for example some programming framework (writing add-in for an add-in :-))?!!
    thx

    Hi,
    -Yes simply the option to add the drill filters' value on the chart title (not just in the filter panel).
    - Yes, exactly. Showing labels On Pie Charts,
    Also about changing chart's type, I meant somehow be able to change the chart while drill downing (when you go down you can preset chart type for next level) 
     - The ability of connecting views to each-other (something like linking views and sending filters or other expressions/parameters from one view to the second view
    based on users actions like drill downing)
    - Also more generally about API/framework (and quite hard to achieve maybe),  the possibility to add some dynamic functionality like changing the color, show some dialog/ change the view navigation based
    on the user interactions or add custom themes (maybe CSS) (UI
    customization ) , the ability to call other data sources and change  the report dynamically
    Generally be able to add custom codes in the javascript/Html5 result report ( some )
    Also ability to add custom controls
    in designer part (and adding its client side behavior too  ) something like Custom Report Item (CRI) in Reporting Service.
    Br,

  • MDX not working in Power View on sharepoint 2013

        I have this MDX statement below that should be able to dynamically give me a % of total for any dimension.  IN power View (sharepoint 2013)
    I am getting an error.  It works in Excel and works in the AS browser but will not seem to work in power view.  Any ideas on how to rewrite it so that it may work.  I am surprised I cannot find anything on this online about this issue. 
    When you highlight the "#ERROR!" in Power view it gives a long description of
    "The Axis Function was indirectly referenced from the context of a statement other than SELECT. Evaluations of Expressions involving this function succeed only
    when indirectly triggered by a SELECT statement".
    CREATEMEMBERCURRENTCUBE.MEASURES.[Percent
    of Total] AS 
    //Used to get % from total
    IIF([Measures].[Total Count] = 0,
    NULL,
    IIF(isempty( ([Measures].[Total Count],
    Axis(1)(0)(Axis(1)(0).Count-
    1).Dimension.CurrentMember.Parent
    )), 1,
        [Measures].[Total Count] / ([Measures].[Total Count],
    Axis(1)(0)(
    Axis(1)(0).Count-
    1 ).Dimension.CurrentMember.Parent))),
    FORMAT_STRING="#,##0.00
    %;-#,##0.00 %";

    Hey Mike,  Thank you very much for the answer.  Just need a little more help please???
    I have added two separate MDX statements that should get the individual % for these two separate dimensions. 
    1. First does it look correct from what your saying individually. Would you write it different?
    2. Next can you show me the MDX that would combine them into 1 measure.  Once I can see how these two get combined into 1 measure I should be able to do this for the rest of the dimensions. 
    3. Will Power View ever allow Axis function?  Just seems strange that it works in Excel Pivot but not in Power View.
    WITH MEMBER [Measures].[Percent] AS
    Case
    // Test to avoid division by zero.
    When IsEmpty ([Measures].[Total Count]) Then Null
    // Test for current coordinate being on the (All) member.
    When [Status].[Status Name].CurrentMember.Level Is [Status].[Status Name].[(All)] Then 1
    Else ( [Status].[Status Name].CurrentMember, [Measures].[Total Count] )
    / ( [Status].[Status Name].CurrentMember.Parent, [Measures].[Total Count] )
    End
    , FORMAT_STRING ="#,##0.00 %;-#,##0.00 %"
    SELECT
    { [Measures].[Total Count],[Measures].[Percent] } ON COLUMNS,
    { [Status].[Status Name].[Status Name]} ON ROWS
    FROM [Report]
    WITH MEMBER [Measures].[Percent2] AS
    Case
    // Test to avoid division by zero.
    When IsEmpty ([Measures].[Total Count]) Then Null
    // Test for current coordinate being on the (All) member.
    When [Order Placed Date].[Order Placed Date].CurrentMember.Level Is [Order Placed Date].[Order Placed Date].[(All)] Then 1
    Else ( [Order Placed Date].[Order Placed Date].CurrentMember, [Measures].[Total Count] )
    / ( [Order Placed Date].[Order Placed Date].CurrentMember.Parent, [Measures].[Total Count] )
    End
    , FORMAT_STRING ="#,##0.00 %;-#,##0.00 %"
    SELECT
    { [Measures].[Total Count],[Measures].[Percent2] } ON COLUMNS,
    { [Order Placed Date].[Order Placed Date].[Order Placed Year]} ON ROWS
    FROM [Report]

  • Power View Enhancement Request - Allow for columns to drop off PowerView when column name changes in data model instead of rendering the PowerView inaccessible

    Currently in PowerView, if a column name changes in the tabular model, and that column is being used in a PowerView chart, the PowerView will become inaccessible.
    It would be nice if it functioned similar to Pivot Table. If a column name changes for a column that is being used in a Pivot Table, the field is just removed from the chart, and the user can select the newly named column. 

    Hi plantm,
    After testing the issue in my environment, I can reproduce it. After we change a column name which is used in a Power View chart, Power view will render the message that” The external data connection has been disabled for this Power View report. Please enable
    the connection.” when we reopen the file.
    To fix this issue, we can click Refresh button under POWER VIEW menu, then it would prompt us that” Power View was not able to complete the action due to a query failure. This can happen if the structure of your data has changed, in which case closing and
    re-opening the application will resolve the problem.”
    According to the error message, we should try to reopen the file to fix this issue. Power view will render the message that” Please refresh to see the data for this Power View Sheet. You can set properties in the Connection Properties dialog so that the
    data refreshes automatically when you open the file.” when we reopen the file. Then we can refresh it again, the report will be displayed without that field.
    Based on my research, inherently what the message means is that Power View cannot be used as a tool for snapshot reporting. With an Excel PivotTable, we can see the data last saved in the PivotTable. Power View, however, does not behave the same way – it
    won’t render the last saved state. If we want to avoid this message when we reopen the file, there are two methods:
    When we create the Power View report, we can select the checkbox that “Refresh data when opening the file”.
    After it’s been set up, go to Connections on the Data menu, then choose Properties.
    For more details about the settings, we can refer to the following blog:
    http://www.sqlchick.com/entries/2013/3/30/creating-a-power-view-report-in-excel-2013-which-uses-an-ext.html
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Power View Drill Up Missing

    I have Power View that contains multiple charts in one view. They all have drill down options. When I drill down through one of the charts, sometimes the drill up, filter, and expand buttons go away. When they do, it's from all the charts. I can't seem to
    get them to come back. I end up having to close the document and reopening it back up. Is there something I can do to prevent this from happening?
    Thanks,
    Lerina

    Hi,
    According to your description, you used drill up/drill down in Power View report. When you drill down to the detail chart, sometimes the drill up, filter and expand buttons disappear. You need to close the report and reopen it to come back to the main report.
    When we click down arrow to drill down to the next hierarchy, the drill up, filter and expand buttons will be displayed at top right of the report. We can come back to the main report by click the up arrow in the top right corner of the visualization. If
    you could not view up arrow, please click the chart to see if it is visible.
    The screenshot is for your reference:
    For more information about Adding drill-down to a Power View chart or matrix, please refer to the following document:
    https://support.office.com/en-nz/article/drilling-up-and-down-in-a-Power-View-chart-or-matrix-d67c5026-62f7-4766-9b22-3a8448c13ecd
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Can I select multi items in slicer by touch operation in Power View sheet ?

    Can I select multi items in slicer by touch operation in Power View sheet ?
    I want to making presentation Power View charts by touch operation.
    Mouse and Keyboard operation can select multi items in slicer by CTRL+click.
    How can I do by touch-screen ?
    Regards,
    Yoshihiro Kawabata

    In HTML5 version, you can click on the multi select button in the chart/slicer and this will allow you to select/deselect multiple items by simply clicking/touching it without CTRL+click. You can see this in action here
    http://blogs.msdn.com/b/solutions/archive/2014/03/10/global-cities-in-power-bi.aspx
    http://blogs.msdn.com/solutions

  • How to create a Power Pivot Chart with Dynamic X-Axis (date time) similar to that in Performance monitor (Start-- Run-- Perfmon)?

    Hi,
    I want to create a Power Pivot Chart and a Power View chart in Power BI where the x-axis should be the current system date time axis and it's functionality should be similar to that in Perfmon.exe tool (Start-->Run-->Perfmon)?

    Hi Manjunath,
    Do you mean you want to programmatically create such a dynamic chart which has a X axis of time? If you just want to do this manually, please take a look at this document which is talking about how to create charts with Power BI:
    Charts and other visualizations in Power View
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Power View returns incorrect totals on SSAS MD

    I have a very simple Power View report on top of SSAS MD.
    I have two measures - both not calculated: an average over time and a last-non-empty.
    When I slice the data, the totals are incorrect. For example, if I look at two months - June and July - the average returns a result as if the sum was divided by 1.97 instead of 2 and the last-non-empty returns the amount of december, instead of July. When
    I reconstruct the same report in SSRS, the totals are correct.
    This looks a lot like this bug:
    http://support.microsoft.com/kb/2880094/en-us
    The solution in the KB article is to install SQL Server 2012 SP1 CU6, however I already have CU9 installed.
    Maybe the patch wasn't succesful? Is there any place I can check? When I run the set-up again I get the notification there is nothing to update.
    Any ideas?
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

    Maybe the patch wasn't succesful? Is there any place I can check?
    Hello,
    You can check the version of SSAS in the Windows Registry. Or you can connect to the server by using Object Explorer in SQL Server Management Studio. After Object Explorer is connected, it will show the version information in parentheses.
    Reference:
    Find the SQL Server Analysis Services and Reporting Services Version, Edition and Service Pack
    Microsoft SQL Server 2012 Builds
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • HT4623 My iphone 5 seems to be stuck in the horizontal view when I'm in the message mode.  In all other views I can turn the phone 90 degrees and horizontal to vertical works fine.  Not sure what the problem is.

    My iphone 5 seems to be stuck in the horizontal view when I'm in the message mode.  In all other views I can turn the phone 90 degrees and horizontal to vertical works fine.  Not sure what the problem is.

    I found a solution!
    Perhaps this is just temporary, but I have my display up and working again.
    Although the symptoms are different were a bit different, the solution here worked:
    http://apple.stackexchange.com/questions/120259/grey-screen-after-login-blue-scr een-of-death-from-cmdr
    As I was able to connect to my HD via an external monitor, in the finder, I went to:
    1. Macintosh HD --> System --> Library --> Extensions
    2. From there I moved all of the files that started with ADM and ATI (19 in total for me) to a folder on my desktop. (You will need to enter your admin password for this)
    3. Next was a restart.
    4. Then my display started working again.
    5. After that, I transferred the files back into my Extensions folder.
    6. I then did another restart with my fingers crossed and breath held. It worked.
    Also... During the last few days of trying to find a fix, I restored a Mavericks backup to my computer away from Yosemite.
    I'm very sure this problem occurred when I put my MBP to sleep, disconnected the power in its sleep, while something was connected to a USB port and unplugging the USB device (for me an iPhone charger) while the MBP was closed.
    I hope this helps the next person.

  • Cannot connect to specific Cube through BI Semantic Model for Power View in SharePoint 2013

    I'm trying to create a connection to an Analysis Services Cube through a BI Semantic Model connection in SharePoint 2013 to create a Power View report. I'm able to connect to other cubes on the same server, and I have SQL Server 2012 SP1 Update 9 installed
    so it's not a versioning issue.
    I've captured a log of two different connection attempts to show this in action. I can't post links, but just send me a message if you need it, just in case there's any interest in it. The first is a successful connection to an alternate cube
    on the same server, and the second is an unsuccessful attempt that produces and error with "Internal error: An unexpected exception occurred.".
    On the SharePoint side, the error is reported as:
    Internal error: An unexpected exception occurred. ---> Microsoft.ReportingServices.DataExtensions.AdomdTestConnectionException: Internal error: An unexpected exception
    occurred.
    This cube was working the previous day, but it has since been edited and it no longer works now but there's no clear reason why. It can still be queried directly through SSMS with MDX queries, and produces no errors.
    Any help is much appreciated,
    Ryan

    Hi Ryan Myers,
    According to your description, when you tried to connect to an Analysis Services Cube in SharePoint 2013 through BI Semantic Model, you get the error message: Internal error: An unexpected exception occurred. But the MDX queries works fine in SSMS.
    It's hard to give you the exact reason that cause this issue based on the limited information, please validate if the connection string is correct. Besides, we can troubleshoot this issue by using the Windows Event logs and msmdsrv.log.
    We can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\Log)
    Reference:
    Data collection for troubleshooting Analysis Services issues
    Data Connection For a Power View Report
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Error trying to create a Power View report against a Multi Dimensional SSAS cube

    Hi all,
    We have installed the Power View For Multidimensional Models CTP, released last November 27 on our Analysis Server instances.  I am now trying to create a Power View report in SharePoint that is connected to a Multi-Dimensional cube.
    I have followed the instructions diligently:
    1. Install the CTP
    2. Created a data connection of type "Microsoft BI Semantic Model for Power View" (see attachment #1)
    3. Tested that the connection was valid (all is good here!)
    I then select the "Create Power View Report" option from the data connection that I created above.
    The Power View GUI appears, and then throws an error:
    Error text:
    "An error occurred while loading the model for the item or data source 'http://server/site/SalesVarianceAnalysis_MDX.rsds'. Verify that the connection information is correct and that you have permissions to access the data source."
    The details of the error are:
    <detail><ErrorCode xmlns="rsCannotRetrieveModel</ErrorCode><HttpStatus">http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus
    xmlns="400</HttpStatus><Message">http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message xmlns="An">http://www.microsoft.com/sql/reportingservices">An
    error occurred while loading the model for the item or data source 'http://hubtest/sites/broadcasting/thewowzone/Data Connections/SalesVarianceAnalysis_MDX.rsds'. Verify that the connection information is correct and that you have permissions to access the
    data source.</Message><HelpLink xmlns="http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&EvtID=rsCannotRetrieveModel&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=11.0.3000.0</HelpLink><ProductName">http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0</HelpLink><ProductName
    xmlns="Microsoft">http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="11.0.3000.0</ProductVersion><ProductLocaleId">http://www.microsoft.com/sql/reportingservices">11.0.3000.0</ProductVersion><ProductLocaleId
    xmlns="127</ProductLocaleId><OperatingSystem">http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="OsIndependent</OperatingSystem><CountryLocaleId">http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId
    xmlns="1033</CountryLocaleId><MoreInformation">http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation xmlns="<Source>ReportingServicesLibrary</Source><Message">http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message
    msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="An">http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source '<omitted for security purposes>.
    Verify that the connection information is correct and that you have permissions to access the data source.</Message><MoreInformation><Source></Source><Message>For more information about this error navigate to the report server
    on the local server machine, or enable remote errors</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    So, I can connect with the connection, but I get an error when connecting with Power View. 
    Any suggestions are appreciated.
    Thanks...
    /Peter
    Peter

    Hi Peter - are you specifying the cube name in the connection string?
    Data Source=[server];Initial Catalog=AdventureWorksDW-MD;Cube='Adventure Works'
    Check out
    http://blogs.msdn.com/b/analysisservices/archive/2012/12/09/power-view-for-multidimensional-models-feature-drill-down.aspx

  • How to get total number of days

    Hi All,
    how to get total number of days , for example if month eq 05 then need to get total number of days until MAY 31.
    and how to get total number of days in a month.
    Thank You,,
    Sriii..

    Hi Sridhar,
    Pls Try to search before posting general questions.
    Try this,
    CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
        EXPORTING
          i_datum_bis                   = p_lv_date1
          i_datum_von                   = p_lv_date2
       IMPORTING
         e_tage                        = p_e_date_difference
       EXCEPTIONS
         days_method_not_defined       = 1
         OTHERS                        = 2
      IF sy-subrc  0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Regards,
    Sunil kairam.

  • Power View can only print one sheet at a time with Power BI Mobile Apps

    I have PowerView for Excel 2013 on Power BI Preview. I have 2 reports sheet and 2 hidden data sheets on Excel.
    I'm getting error on Mobile Application in Windows 8 RT tablet.
    I should see 4 reports in preview page, but I see 2 correct reports and 2 errors.
    Power View can only print one sheet at a time. Please switch to the desired sheet and try again.
    Why this occurs? What should done in Excel?
    Kenny_I

    Thank you for reporting this issue. This is a known issue that we had fixed last week. In a few days, the updated version of the app will be available in the Windows store. At that time, your app should automatically get updated to the newest version, if
    you have not changed your default settings.
    If you still experience issues next week this time, please post back and perhaps share your workbook, so we can do a thorough investigation.
    Thank you.

Maybe you are looking for