Is there any power pivot feature similar to" conditional block " property in cognos reports?

I have a report with multiple power pivot charts. My requirement is to create a prompt which prompts the user with the list of charts and based on his selection , one of the charts will be displayed at a time. ie, user will have a choice for display
of the chart. and these charts should have a common filter. I am using excel 2013 and SSAS tabular model.
Could anyone please help me on this
Thanks in advance

Hi BLtechie, 
If you are ok with using VBA (precluding the workbook from functioning correctly within SharePoint in an Excel Web Access web part) then you should be able to adapt the solution here: 
http://www.mrexcel.com/forum/excel-questions/525495-conditionally-show-hide-charts.html
Alternatively, if you have a tabular model and access to SharePoint 2013 with Reporting Services Integrated mode running SQL 2012 SP1 CU 4 or higher you could instead create a power view report that used the pinned filters property and simply presented
each of the pivot charts on named sheets (forming your user's selection choice). 
http://blogs.msdn.com/b/riccardomuti/archive/2013/05/24/pinning-filters-in-power-view.aspx
Hope this helps, 
Mike

Similar Messages

  • Are there any photo editing programs similar to the ipad

    Are there any photo editing programs similar to the ipad?

    Never used an ipad.  Why not try the iPhoto forum area?

  • Hi,I hv brought iphone4s from us and it was unused but I lost it in France.....I hv got the IMEI number and bill....is there any way I can trace it or block it....or can police can help me out in finding it.....it's urgent

    Hi,I hv brought iphone4s from us and it was unused but I lost it in France.....I hv got the IMEI number and bill....is there any way I can trace it or block it....or can police can help me out in finding it.....it's urgent

    Sorry, there is no way to trace your phone.

  • Is there any power plant designed by NI CRIO?

    Dear All,
    I want to learn that does any power plant use NI Compact RIO system?
    I could not find any reference about hydro power plants.
    Best Regards,
    Alkan

    Akunuvar,
    Is there anything specific that you are interested in?  If you are interested in general applications and where people use our hardware you can search http://www.ni.com/case-studies/
    http://sine.ni.com/cs/app/doc/p/id/cs-10016
    These studies are not always very technical but they give a good overview of what people are doing with our products.
    Matt J
    Professional Googler and Kudo Addict
    National Instruments

  • Are there any good basic/feature phones that have been discontinued?

    My brother currently has the Samsung Intensity II and it's giving him a lot of problems. After troubleshooting with tech support it is best for him to replace the phone. The insurance deductible is $45 but the phone will likely be refurbished. I am seeking a non-smartphone for him that I can purchase via eBay or Craigslist. Because he is 16, he wants some type of smartphone. Preferably the iPhone or a low/mid-grade Android phone. I won't allow him to get a smartphone until he gets a job and pays for the phone and monthly data plan.
    I am sort of disappointed in the selection of basic phones on the Verizon website - there are only 7 phones under $100. It seems backwards that there are 23 smartphones under $100. The conspiracy theorist in me would think this is a ploy to coax customers to move towards smartphones but I digress. I have been looking at the Samsung Brightside and the ZTE Adamant (discontinued - not offered on vzw.com) and they seem pretty cool and reasonably priced on eBay. Are there any other basic or feature phones that you would recommend [including discontinued and upcoming phones]?
    I would rather not purchase a phone directly through Verizon so that it does not extend the contract or interfere with his upgrade date (to ensure that he will be able to afford the phone of his choice when he is ready).

    Another vote for the Env3 - son and daughter both had them (18 and 21) and they were more than adequate phones and worked well for them.  My son (now nearing 24) is still using his though he is eligible for an upgrade now - he likes it and sees no reason to change until it quits on him.
    The Alias (original) was a good phone for my daughter before her Env3, and I really enjoyed my LG Voyager, touchscreen.  None of the phones require a data plan, if you can find them.

  • Is there any template (decoration) feature in Jdeveloper and ADF faces ?

    Hi
    Thank you for reading my post
    is there any template / decoration facilities in Jdeveloper for ADF faces ?
    for example there are some part of my web pages which are allways the same and i need to show them where ever the user is in my we application (for example a left panel contain latest emails) how i can have this feature ?
    Thanks

    HI!
    Facelets works very well with Oracle ADF faces ,but to get a partial support from IDE(JDeveloper) , you have to build pages in jspx format, and not in xhtml format.
    We are using facelets with absolutely no problem; the only hitch is that we have add all our ADF Faces components to a jpx page and then embed Facelets tags to it,for JDdeveloper does not add components to /in between Facelets tags, which is an improvement to be made, and Mr.Frank has informed me that this(Facelets support in JDeveloper) is filed as an enhancement request for the next version of JDeveloper.
    Anyway, I can assure you that you can work with Facelets and ADF faces with absolutely no problems,at all;the only thing is you need to struggle some time getting the Facelets configured for ADF Faces!
    Actually, I planned to write an article on accomlishing this(integrating facelets and ADF Faces),but presently I'm preoccupied with some other imoprtant task, so I'm afraid may not be able to provide the article inthis week.
    Regrads,
    Samba.

  • Is there any power shell command available to get all information/settings from Config Database/Farm

    Hi,
    Basically we are rebuilidng a new farm which will be a replica of other environment. We have setup Sharepoint and migrated all contents.So everything looks same. Now the question is, what else info need to check from the current FARM whether it is 100% matched
    with new one.
    Is there any script I can run which will give me all information from SP FARM then I could have compared with new farm.
    Thanks  
    srabon

    Check the below script which provides common service application settings, AAM, Designer settings,Farm configuration and few more details..  you can run it in both farms and validate the outputs
    http://technet.microsoft.com/en-us/library/ff645391%28v=office.15%29.aspx
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Is there any default calendar which I can use on my form and report

    Hi All,
    Is there any default calendar which I can use on date field on my form and report.
    just by change its property like double click on date field and property calendar = yes
    or any other way.
    thanks
    mohan

    hi
    create a functions something like this.i hope it helps u.
    function call_calender ( f_dtm_set in date default sysdate ) return date is
    l_dtm  date;
    l_list paramlist := get_parameter_list ( 'CALL_CALENDER' );
    begin
    if
      not id_null ( l_list )
    then
      destroy_parameter_list ( l_list );
    end if;
    if
      trunc ( f_dtm_set ) != trunc ( sysdate ) --> if you call the calendar function with a date, the calendar will change to that date
    then
      l_list := create_parameter_list ( 'CALL_CALENDER' );
      add_parameter ( l_list, 'DTM_SET', text_parameter, to_char ( f_dtm_set, 'dd/mm/yyyy' ) );
    end if;
    copy ( null, 'global.calender_date' ); --> create a null global
    call_form ( 'form_name', no_hide, no_replace, no_query_only, l_list );
    if
      not id_null ( l_list )
    then
      destroy_parameter_list ( l_list );
    end if;
    if
      name_in ( 'global.calender_date' ) is not null  --> if the global is not null, give the choosen item back
    then
      l_dtm := to_date ( name_in ( 'global.calender_date' ), 'dd/mm/yyyy' );
    end if;
    erase ( 'global.calender_date' );
    return ( l_dtm );
    end;sarah

  • Is there any component which returns similar to cell information in a table

    Hi,
    I need to display information on my dashboard with a spreadsheet table. when users clicks on a particular cell, i need to capture which cell they have selected and pass to a webi report. The spreadsheet table has position and row as selectability types.
    Can anyone please let me know wether there is any other way out for this, or is there anyother component which can solve my problem? Displaying data in tabular format and i would like to know what has been selected a single value.
    Regards
    J

    Hi BLtechie, 
    If you are ok with using VBA (precluding the workbook from functioning correctly within SharePoint in an Excel Web Access web part) then you should be able to adapt the solution here: 
    http://www.mrexcel.com/forum/excel-questions/525495-conditionally-show-hide-charts.html
    Alternatively, if you have a tabular model and access to SharePoint 2013 with Reporting Services Integrated mode running SQL 2012 SP1 CU 4 or higher you could instead create a power view report that used the pinned filters property and simply presented
    each of the pivot charts on named sheets (forming your user's selection choice). 
    http://blogs.msdn.com/b/riccardomuti/archive/2013/05/24/pinning-filters-in-power-view.aspx
    Hope this helps, 
    Mike

  • Is there any power electronic converter models or templates or VIs available in LabVIEW?(WITHOUT Multisim)

    I want to to build a speed control of DC motor. for this i need to build a power electronic converter (AC to DC) in LabVIEW. is it possible to model a power electronic converter in LabVIEW like a DC motor?

    Hello Ivan,
    It looks like in your project you are using both the NI 5761 adapter module and DRAM.  We have seen a few cases where certain combinations of DRAM, adapter modules, and FlexRIO FPGA targets in LabVIEW FPGA 2010 have caused some resource overmapping errors of the IODelayCtrl components used in the adapter module and DRAM CLIPs. Due to a bug, certain constraints inside of the CLIP cores are misinterpreted by the ISE compiler causing this overmap error when you switch to LabVIEW FPGA 2010. 
    This was reported to R&D (# 258076) for further investigation and to create a long term fix.  In the meantime, for this specific issue please use the following knowledgebase article to apply a patch to your FlexRIO fixed logic files.  This patch updates some of the constraints used by the DRAM to ensure that the Xilinx compiler can properly interpret them. There are more details on your issue in the knowledgebase as well. 
    Knowledgebase 5E4FNCDP: Error, “Compilation Failed Due to Resource Overmapping,” When Using NI FlexR...
    If you do run into any other issues regarding IODelayCtrl components, feel free to reply to this forum topic to let me know about them.
    Regards,
    Browning G
    FlexRIO R&D

  • Is there any power supply to the 550d camera ?

    I want to connect my camera :
    1. To my car lighter place to get the power to my cam.
    2. To my laptop so the memory of the camera will be my laptop hard disk and not the memory card in the camera.
    Any ideas where to buy the power supply ? And how to connect the camera to the laptop ?

    The Canon ACK-E8 power adapter accessory allows the camera to operate off AC power (no battery needed), but this is for AC power sources... your car would provide DC power.
    There are third party battery charges which can charge from DC power, but I am not aware of one which provides a way to directly power the camera from DC power.
    The EOS Utility (this was on the software CD that would have been in the original packaging with the new camera) supports "tethered shooting".  This means you can connect the camera's supplied USB cable to the laptop, and the utility can remotely trigger the camera (and all images immediately import into the computer and are displayed.)  Apple's "Aperture" supports tethered shooting and I *think* Lightroom does as well (I'm not a Lightroom user.)
    Tim Campbell
    5D II, 5D III, 60Da

  • Is there any documentation on how to nest IF or IFThen in Fin Reports

    I'm trying to nest now but can't find any documentation on the proper syntax.
    Here is my logic. I'm in column D in my grid.
    IF C < 0 and B = 0 then -1
    ELSEIF C = 0 then 0
    ELSEIF B < 0 then ( C / B ) * -1
    ELSE C / B
    Can you help? I'm stumped and on deadline.

    Thanks... Got me on my way: Here's what final solution was
    IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ B ] < [ A ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ A ] < [ B ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 = 0 and [ B ] + 0 > 0 ) or ( [ A ] + 0 > 0 and [ B ] + 0 = 0 ) ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) ) ) )
    Had to put cheasy + 0 in there to force a 0. I couldn't find a way for it to treat #Missing as a zero. Anyways it worked and that's what matters I guess :)
    Appreciate the help.

  • Is there any way to generate table of contents in adobe for a report output

    Hi All,
    I need to display the output of a report in an PDF and layout needs to be developed in Adobe Print Forms. I want to know if there is a way to generate a table of contents for the output in adobe form on a particular page.
    Thanks...

    Hi,
    Thanks for the reply. I am new to the adobe and to the javascript.
    I would appreciate if you can guide me as to where can I get the online help on javascript related to Adobe Print and Interactive Forms.

  • Question: Are there any advantages for stored procedure for data block?

    There are two ways to create data block:
    1. query table or view or
    2. stored procedure.
    After 9i, AS has a PL/SQL compiler. Do we still see the advantage of using stored procedure, as claimed that it is faster due to the stored procedure always compiled?
    Thank you in advance.
    Jimmy

    Jimmy,
    The "fast" side is not the only one benefit of stored procedures.
    Of course, you can use the BULK COLLECT functionality which is not available into Forms.
    But stored procedure is a good way to perform the following actions:
    complex handeling of datas (insert, update or delete that generate severals actions on other tables).
    externalization/centralisation of business rules.(separate the design and functionnal work).
    more secutity, because you can prohibit manipulation of datas outside of the procedures.
    You can change the rules without modify the forms.
    etc.
    Francois

  • Is there any documentation on creating basic paper reports?

    Hi - I have just started to try to create a report. We have 9i reports but don't need any of the web stuff. I only need to create reports off of our database, run them on my workstation, and print out hardcopies to give to 1 or 2 managers.
    Is there any documentation that would just teach me how to create simple reports without all the web functionality? I was trying to follow along in the Reports Builder 6i, but it seems a lot has changed since 6i and I am having trouble just trying to find the corresponding buttons in 9i.
    I need to learn how to create reports, triggers, and especially I want to learn how to rearrange the report output after it has been created. It seems very confusing to me how to do this on Paper Layout or Paper Design screen.
    Thanks for any help. I would even go buy a book if there were a good one.

    Links to all reports docs
    http://otn.oracle.com/documentation/reports_dev.html
    Oracle9i Reports Building Reports ( very extensive )
    (PDF version ) http://download.oracle.com/otn/other/general/B10310_01.pdf [ 8 MB ]
    (HTML version ) http://otn.oracle.com/products/reports/htdocs/getstart/docs/B10310_01/title.htm
    Thanks
    The Oracle Reports Team

Maybe you are looking for