Is it possible to hide part of the line in webI line chart

I had webI line chart which is showing for 2 months data, and is it possible to hide the line for only first 10 days in the line chart and continue the line after 11 th day till the end?

@rajesh:  I didn't understand why should we use Relativedate() function?can you please explain little bit more. Becuase the report has customer exit written such a way that if I run the report today it will show up previous 60 days
For example:
today is 04/06/2011
so in the report date column has values and shows up like
02/06/2011
02/07/2011
02/08/2011
04/05/2011.
So now I should hide/avoid/shouldn't show First 10 days. In example above 02/06/2011, 02/07/2011,02/08/2011.....like wise 10 days so till 02/16/2011 shouldn't be shown in the report. The beginning of the report should start from 02/17/2011 till 04/05/2011..
Edited by: saathiyaa on Apr 6, 2011 9:31 PM

Similar Messages

  • Crystal: Hide part of the field

    Hi there,
    I need to hide part of the contents of a field, as shown in the example below:
    Field Example: Description (remarks)
    For the above example, I need to hide the information that come after the parentheses = (remarks). Only the Description should be displayed.
    Thanks in advance.
    Kind Regards,

    Create a formula like this and use it on the report instead of the field:
    Split({MyTable.MyField}, '(')[1]
    "Split" will split the text from the field into an array based on where the "(" is and "[1]" will give you the first element in the array which will be all of the text prior to "(".
    -Dell

  • Is it possible to hide "songs" in the Song Library?

    I wanted to put some language lesson CDs on my iPod. They now show in iTunes under the Song Library. Since these aren't really "songs", I want to move or hide them from the Song list but accessible as part of a play list.
    It got me wondering whether we can subcategorize songs in album folders or something in the master Song Library, but that's probably a question for another day...
    Thanks!

    I don't think this can be done. You may need to approach this from a different angle, like creating a Smart Playlist that contains everything in your library except for certain genres, like Spoken Word or Education, and doing your normal listening from this playlist rather than the library listing itself. This would take a small adjustment in habit but would do what you're looking for.
    iMac G4 17; iBook G4 1.33 Mhz 14; iPod 3G 20GB   Mac OS X (10.3.9)  

  • Is it possible to remove hyphens at the end of a line separating parts of a word? Thank you

    Hi there,
    I was wondering, Indesign automatically adds hyphens at the end of a line to join one part of the word with the next part (on the next line). Is there any way to get rid of this in my entire document so that indesign automatically puts the word on the next line rather than separating it with a hyphen? I've been going through it manually and correcting it but it's taking many hours.
    Let me know if it's not clear what I'm saying
    Many thanks

    LegitNZ wrote:
     I've been going through it manually and correcting it but it's taking many hours
    Ouch!  What you need to do is turn "hyphenating" off.  Select all your text and do it in the control panel like this:
    You can also turn it off before you start in the paragraph panel, or by turning it off with no documents open make it off by default.

  • Applying a User Filter web part to the Project Summary Web Part

    I've been searching for a way to do this but to no avail!
    Is there a way to filter out the Project Summary Web Part to only display MyItems.aspx?
    nothing seems to work.  I have designer 2013, SharePoint 2013, etc.
    Please advise,

    Hi Boxboy,
    Based on your description, my understanding is that you want to only display current user’s tasks in the Project Summary web part. Is it right?
    Project summary web part displays events and tasks in SharePoint 2013. Per my knowledge, we cannot filter the tasks in the OOB Project summary web part.
    More information about Project summary web part:
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2013/07/11/how-to-use-the-project-summary-web-part-in-sharepoint-2013.aspx
    As a workaround, you can filter the orginal tasks list using Current User Filter web part instead of filtering the Project summary web part.
    Or, you can develop your own Project summary web part using code.
    How to create a web part for SharePoint:
    https://msdn.microsoft.com/en-us/library/ee231546.aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • "Is it possible to hide/remove/change the server name/type and

    Is it possible to change the server name/type and version number being sent in the http response header by iPlanet Web server so a hacker can't see what server and version I'm running? If yes, what is the procedure to do it?

    Hi,
    I have tried the ServerString none entry in magnus.conf but still it is showing the Server information in the header if you use telnet . Is there any other way to hide or to mask this information.
    Thanks,
    Ramki

  • Is it possible to export part of the FCPX Project from timeline

    Is it possible to export a selection from the FCPX timeline or do I have to export the entire project and then edit it in another program.

    andynick wrote:
    Goldfish wrote:
    FCP7 was much better for this:
    Yes - but you don't mention the billion ways in which FCP X makes FCP 7 totally obsolete.
    Andy
    I didn't think it was relevant to the thread.
    I'm simply encouraging the return of a few features that were left on the cutting room floor - no harm in that.
    I O markers and chapter markers are a few of them and routinely a topic of discussion. It's not just me.
    For the record I'm a big Fan of FCPX. It has many of the features that I said, for years,  should be added to FCP7 -  and I took a lot of heat over the years for pointing out the deficiencies in FCP7.
    When a new editor comes to the forum and asks "why can't i do this really simple thing" , I think it's better to acknowledge his observation and encourage constructive feedback to Apple rather than implying that he was stupid for knot figuring out a convoluted work-around for something that should exist in the program.
    If your post had started with "here's a work around…." rather than " takes seconds…"
    and you had finished with "…hopefully we'll see I O markers in a future update…"
    Rather than "…Ctrl+Zs to get back to previous state." you never would have heard a peep from me.
    I just find the apologist mentality difficult to ignore. No offense intended.
    best regards,
    g
    PS - I also think "totally obsolete" is a bit of a stretch.

  • Is it possible to hide empty list items in a web app?

    Hi,
    as you can see on the here included image, below "Ihr Profil", there are 10 items provided by a webapp which are customized in the details.htm page as an unordered list.
    In this case there are only 6 items filled out, the rest is empty, but the empty items do appear. Is it possible to tell the details page, not to display those empty items?
    Thanks a lot for your interest and help

    There are ways to do this with jQuery, but an easier way would be to use CSS.
    ul li:empty {
       display: none;
    Though this will not work in IE8/7, if that is a deal breaker you will need to use jQuery: http://jsfiddle.net/F7ZWV/
    $("ul li").each(function() {
                                                      var $this = $(this);
              if($this.text() == ""){
                 $this.remove();

  • When I watch Youtube Videos, it's like to half parts of the video and green lines at the bottom, cannot click on settings either, works fine with IE, problem with Flash? Tried to uninstall, still won't work

    Help anyone?

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • Is it possible to hide/show the "Do you want to save changes you have made?" msg

    Hi,
    Is it possible to hide and show the Oracle message "Do you want to save changes you have made?"
    Thank You

    Not really.
    You have to use commit_form to commit the changes or a
    rollback_form to rollback just before exit_form, clear_form,
    or clear_block.
    Or, use clear_form(no_validate), clear_block(no_validate).
    It might be good to check wether there is some change in the
    data and show an alert in your own language asking the user in
    his/her own language wether he/she wants to commit the changes
    or not.

  • How to hide part of search results to particular users?

    Hi,
    Is it possible to hide part of search results to particular users? If it possible can you please tell how to implement? 
    Thanks, Chinnu

    Hi,
    According to your post, my understanding is that you wanted to hide part of search results to particular users.
    You can use the security trimming to achieve it.
    By default, Enterprise Search results are trimmed at query time, based on the identity of the user who submitted the query.
    When results are returned for a user's search, the Query engine performs an access check for the user's identity against the security descriptor stored in the content index for each item in the search results. The Query engine then removes any items in the
    search results that the user does not have access to, so that the user never sees these results.
    SharePoint uses the access control list (ACL) associated with each document to trim out query results that users have no permission to view,
    but the default trimming provided by SharePoint (out-of-box trimming) may not always be adequate to meet data security needs.
    In that case, you can custom the security trimming to meet your requirement.
    There are some articles for your reference.
    Trim SharePoint Search Results for Better Security
    http://msdn.microsoft.com/en-us/magazine/ff796226.aspx
    Writing a Custom Security Trimmer for SharePoint Server Search
    http://msdn.microsoft.com/en-us/library/ee819930(v=office.14).aspx
    Walkthrough: Using a Custom Security Trimmer for SharePoint Server Search Results
    http://msdn.microsoft.com/en-us/library/office/ee819923(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to Hide adress of the form from adress bar

    Hi all ,
    i want to ask that is it possible to hide or change the adress of the form from the adress bar.....like when we run the form it shows the adress like
    http://develoment:8888/forms90/f90servlet?form=C:\GMS\Forms\GMS_SHIPMENT.fmx&userid=GMS/GMS@gms&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES
    that is too long i want it does not show the whole adress and also same problem with reports when i call the the report it show the whole adress and that is not good security wise
    i am using oracle 9IDS
    thanks in advance
    Shayan
    [email protected]

    go in your <forms-home>forms\server - directory. there is formsweb.cfg.
    All the [default] - parameters are global. If you don't set a parameter in your own section, then the fallback-parameters are stored there.
    at the end of the file you should write your own settings:
    e.g.
    # myConfig - this is an example for your own Config-Section
    [myconfig]
    form=myStartForm
    imageBase=codeBase
    splashScreen=no
    separateframe=true
    try it
    Gerd

  • It is possible to copy only the response in web console?

    Ctrl+C an item in web console copies both time and response, example:
    [13:28:58.020] function alert() {
    [native code]
    How to copy only the response?
    function alert() {
    [native code]
    }

    That isn't possible AFAIK.<br />
    Firefox 26 will have the possibility to select part of the text, so you can leave out the time stamp and only select what you want.<br />
    The current Nightly build (28.0a1) can suppress the time stamps via the toolbox options, so you do not even see them anymore.

  • Hide Dashboard from the Drop Down list - OBIEE 11.1.1.6.2 BP1

    Hi,
    We have got an Index page, which contains links to all Dashboard the user is allowed to see and it is the home page for every user. Apart from that user's can select Dashboard from the drop down list. Is it possible to hide some of the dashboards from the drop down list but still users should continue accessing them from Index page?
    Thanks in advance.

    Hi,
    For showing the Dashboards as a drop down list I believe you are using HTML code. If so edit the HTML to remove the dashboards you do not want to see in the drop down.
    If the drop down is because of excessive pages shown on the dashboard then under the dashboard properties you can select the hide option for the dashboard. So by default the dashboard page would not show up and the index links would show.
    Let me know if this helped.
    Regards,
    Jay

  • Is it possible to hide certain parts of html text from the internal bc sit search

    Is it possible to hide certain parts of html text from the internal bc site search, for example on each page I have the following text:
    We use cookies to ensure we give you the best experience on our website.
    If you continue to use our website we assume that you are happy to receive these cookies. Find out more. close
    The above snippet of text shows on each result snippet, I really would like to hide this as not relevant to keyword search

    Hmm, that is a good question. The one thing that immediately comes to mind would be to use javascript to output the text ("We use cookies to ensure we give you the best experience on our website. If you continue to use our website we assume that you are happy to receive these cookies. Find out more. close"
    ) on the pages.

Maybe you are looking for

  • Filename for PDF Files in Reports 10g

    Hi Everybody. I am using oracle application server 10.1.2.3.0 and my OS is windows server 2003. Is there a way to name the PDF filenames that get generated on the server under the ORACLE_HOME/reports/cache when using the destype=cache, desformat=PDF

  • N8 Video editor.. out of sync audio

    Every time i try and join 2 or more videos taken with my N8 using the video editor, the audio gets out of sync after the first video. Has anyone else notice this?

  • AIR 3.2 video upside down and mirrored

    Here is a bug report https://bugbase.adobe.com/index.cfm?event=bug&id=3156631 SVC video decoding upside down and mirrored - AIR version 3.2.0.270 Everything was ok before update. Problem Description: In AIR desktop version there is a big problem with

  • Ejbc found errors  (The filename,directory name or volume syntax is incorrect

    hi ^^ i did like this to deploy test bean.. java -classpath %CLASSPATH% -Dweblogic.home=%WL_HOME% weblogic.ejbc -compiler javac build\std_ejb_%BEAN_NAME%.jar %MYSERVER%\ejb_%BEAN_NAME%.jar ERROR: Error from ejbc: D:\temp\ejbcgen\Files\JavaSoft\JRE\1\

  • Clear Block All not working

    Hi, I have a calculation script that fixes on some sparse dimension members and then runs a Clear Block ALL command. This script works in dev environment, but does not work in prod. I copied the application from prod to dev and executed the script an