Can I make a formula for this ?

HI !
I have a table that contains 2 columns : var, value
I want to do something like
if var = "CPUCount"
   return value
else
  skip record !
I use a formula but it automatically prints "0"s if the above condition doesn't match.
I just want to print the value of the var named "CPUCount" and skip all other var values.

My formula looks like this:
If {table.Var} = "CPUCount" Then
        tonumber({table.Value})
Can I add something like
else
   NULL  // skip or something
Can I use a formula or do I have to use something else like Select Expert...

Similar Messages

  • Can I make a shortcut for this path on the "menu bar" ? Tools Option Advanced Network Setting

    I have to go through this path several times a day, I though it could be better if I could make shortcut on Menu Bar.

    Use one of these if you need to change the proxy settings:
    * FoxyProxy: https://addons.mozilla.org/firefox/addon/2464
    * QuickProxy: https://addons.mozilla.org/firefox/addon/1557
    * SwitchProxy: https://addons.mozilla.org/firefox/addon/125

  • How can I make a shortcut for bluetooth in my iPhone 4 ?

    Hello everyone
    How can I make a shortcut for bluetooth in my iPhone 4 ?

    sorry not that I know of, out of the box that is, would be heady to quickly change between headset and normal mode though
    let apple know you want this feature
    http://www.apple.com/feedback/iphone.html
    there are 3th party solutions though
    http://www.macrumors.com/2012/04/17/new-app-turns-bluetooth-on-and-off-with-one- touch/

  • Lost newly purchased Iphone5, Reported complain in police station but not getting proper responce. Can apple help me out for this?

    Lost newly purchased Iphone5, Reported complain in police station but not getting proper responce. Can apple help me out for this?

    Oh, don't worry. I know exactly. I'm a retired law enforcement officer after 30 years. I didn't mean for them to allow you to use the Internet, I meant for them to assign an officer to try and track the device for the victim. Again, that would require the victim to provide their Apple ID and password, which most would not want to provide.
    Pinging the phone as you mention is only when there is probable cause and that is done through the carrier.
    I'm glad to see someone also understand that a stolen cell phone is not as important to law enforcement as it is to the victim. It is unfortunate as smartphones get more expensive. Hopefully as iOS 7 makes it debut later this year, the work Apple has done will have some impact on smartphone theft. Other manufactures and carriers are starting to improve here in the states. It never was something carriers worryed about with blacklisting. This is where they were a step ahead in Europe.

  • Can anyone make a PKGBUILD for Novel iFolder and Novel consoleone ?

    Like in subject. I tried install it from Novel homepage, but i have problem with make dependiences and this two package, can anyone make good PKGBUILD for new version ? In AUR i found PKGBUILD's but the mirror doesn't work and i can't find another mirror. Thanks Igor. Have a nice day !

    Yes, but i saw many rpm package, and source code. If you talk about license there is oportunity to get free license for 30 or 60 day's. Thanx for respone.

  • I use a Canon MPE-65 almost exclusively and can't find a profile for this lens in the LR 5 lens correction panel.

    Is Adobe planning to add this lens profile? Or is there a workaround?

    I don’t think Adobe can make lens profiles for this specialized macro lens.
    Lens profiles correct for geometric distortions and vignetting, and both of these change based on subject distance, aperture, focal length and for this lens, the 1x-5x zoom setting.
    Lens profile files consist of a series of corrections for various combination of the above.
    For a lens profile to be created the lens has to communicate the subject distance, focal-length, aperture and zoom level to the camera and the camera has to record these in the EXIF data so that Adobe products can read it these parameters and look up the matching correction.
    I don’t have this lens, but I am reading that it is a manual lens which can mean that there is no communication of lens settings back to the camera.  Is this true, at least for some of the settings?  If so, then Adobe cannot match a lens profile with the lens settings and a lens profile would be useless.
    If you always shoot your macros with a few combinations of your settings there’s a possibility you could make your own lens profiles and match them up, yourself, based on notes you take at each session.
    The Adobe Lens Profile Creator, that is available as a download from Adobe, uses checkerboard patterns.  It would be necessary to create very small ones for this lens, if 5x really makes a grain of rice full-frame.
    You can read more about it, here, and try to create your own:
    http://helpx.adobe.com/photoshop/digital-negative.html#resources

  • How can I make a image like this one? (image in description)

    Hi guys I need to know how can I make a image like this one http://img31.imageshack.us/img31/2710/69823211.gif
    I need step by step instructions please. How can I animate it like that? Whats the font? Tell me everything please.

    To do a step by step instruction on here will take someone a very long time, as you havent really said at what level you are at.
    On Youtube there are a lot of animation tutorials for PS. But essentially in this case you are moving that white streak across a few frames at a time.
    The font might be found with the help of http://http://www.myfonts.com/WhatTheFont/

  • Can i make a program for calender

    can i make a program for calender actually i have to run a calender logic and select the date and modify them with some value.
    I just need to ask is there any function module that runs a  calender logic by picking the input date .
    Eg if i put a input date say  03.04.2005 the program then automatically run for all the date of that month and year, i mean i can get  the all the dates for that month and year...
    Please help

    Hi Mave ,
    If you want an internal table with the dates of the month
    just try this -- . Instead of sy-datum you can pass any date and see the output .
    parameters Pdate like sy-datum.
    data : begin of itab occurs 0 ,
           date like sy-datum,
           end of itab.
    Data Month(2) type N.
    itab-date = pdate.
    itab-date+6(02) = 01.
    month = itab+4(2).
    do .
    if itab+4(2) NE month.
    exit.
    endif.
    append itab  .
    itab-date = itab-date + 1.
    enddo.
    loop at itab.
    write :/ itab-date.
    endloop.

  • How to make jar file for this compilation method ?

    can any one tell me how to make jar file for this compilation
    D:\java\browser\IEInJava>javac -classpath jdic.jar;. IEInJava.java
    D:\java\browser\IEInJava>java -cp jdic.jar;. IEInJava
    *this is a compile code:-*
    D:\java\browser\IEInJava>javac -classpath jdic.jar;. IEInJava.java
    *and this is a run code:-*
    D:\java\browser\IEInJava>java -cp jdic.jar;. IEInJavanow how make JAR file ?

    Assuming IEInJava only uses classes inside the jdic jar, this is one way. D:\java\browser\IEInJava> jar cf yourjar.jar IEInJava.classThen to run it you would use D:\java\browser\IEInJava> java -cp jdic.jar;yourjar.jar IEInJavaAnother way would use the jar manifest file to specify the Main-Class and Class-Path.

  • 2 days ago i rented The Avengers, beside it took almost 7h to download, at the end it did not get fully downloaded... 20 last minutes were not there. I know is just 5 dollars, but, how can i make a claim for the amount paid?

    2 days ago i rented The Avengers, beside it took almost 7h to download, at the end it did not get fully downloaded... 20 last minutes were not there. I know is just 5 dollars, but, how can i make a claim for the amount paid?, what if I buy a movie later? i will get the same problem!!! still I do not know how the avengers ends!! please do not tell me haha, focus on the problem here!

    Welcome to the Apple Community.
    Apple's policy on sales of digital content is that all sales are final. If however you wish to appeal to Apple, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.
    Currently, if your purchase happens to be your most recent purchase you will not be redirected to the report form, in this case use the report a problem option from the invoice that was emailed to you.
    I believe your issues are probably a network issue, which unless you resolve are likely to be repeated again.

  • ICal does not allow me to edit "minutes" in the appointments. when i make an appointment it defaults it to xxhrs 08mins (example 16:08) how can i make an appointment for 16:00 or 15:30 hrs ...etc.

    iCal does not allow me to edit "minutes" in the appointments. when i make an appointment it defaults it to xxhrs 08mins (example 16:08) how can i make an appointment for 16:00 or 15:30 hrs ...etc.

    Hi,
    You can change this in System Preferences, Language & Text.
    Go to System Preferences > Language & Text > Formats tab and change where it says Custom to your location. Then re-open iCal.
    Let us know how it goes.
    Best wishes
    John M

  • TS1702 Please can't make FaceTime for free for all iMac it's mean Apple can't make face time for free for snow leopard ?

    Please can't make FaceTime for free for all iMac it's mean Apple can't make face time for free for snow leopard ?

    did Yamaha/Apogee ever work out the problem that you couldn't use mLAN drivers for the XS (it's not really mLAN, it's "based on" right?) and Apogee drivers at the same time?
    I think Yamaha has updated their drivers twice since you and I last exchanged ideas on this.
    You've got killer hardware, and while I'm sure it's possible to set up an XS to send MTC and for Logic 8 to deal with correctly, it's just backwards of the way I use (almost) the same tools. My experience is the same, control Logic from the Motif, only it's so much more than just stop/start, and locate. Your XS is made to be a remote controller for Logic, sliders, transport controls, even the info for tracks and plug-ins (in Logic!) show up on your XS display and you can do plenty without touching the keyboard or mouse... Besides the sound of the Motifs, they're just great at doing this kind of stuff too... I personally wouldn't consider anything else...
    I don't want to send you down a path that won't work if the two vendors in question haven't solved this yet, but... I want to help you but deep inside I think you're approaching your top-of-the-line gear backwards...
    of course, if this is still a vendor incompatibility thing... then you have no choice.
    pages 839 (the graphic is on page 838) of the Logic user manual under "listen to MMC input" describes what you need to set in Logic 8 to make this work. Since I don't have an XS, I can't point you to the correct pages for that.
    I really hope you can get this to work.
    Michael

  • Its our national day today. Can you make an emoticon for our flag Brunei Darussalam please?

    Dear apple software team,
    Its our national day today, Can you make an emoticon for our flag country Brunei Darussalam please?
    Thank you for making this possible.  

    Not talking to Apple here, only other users like yourself.
    If you want to make a suggestion to Apple you need to use their feedback forms, Apple - Feedback
    good luck

  • 2 questions : How do I know if a video in Flash is streaming? 2nd - how can I make an overlay for video?

    Two questions :
    1) I have created a QT.mov, imported it into Flash, but after
    thinking about it, I want to be sure it is streaming for the web.
    How can I be sure of that? If it is not, what code can I put to
    make sure it is loading?
    2) How can I make an overlay for the video that disappears as
    soon as the user clicks on the play button?

    1. Without a flash ciommunication server for TRUE streaming
    of the file, what you get is called Progressive streaming. This
    means once the video begins to download it can start playing before
    the file has completely downloaded to the user. There are good
    descriptions (including pros and cons) of this here:
    http://www.mediacollege.com/video/streaming/overview.html
    2. If you have the file set to start automatically there will
    be no need for the user to push the play button. You could just put
    a graphic on top of the video component, and use actionscript to
    make the graphic invisible when the play button is pushed.

  • Microsoft Office can't find your license for this application - multiple copies of Office 2013 x32 failing to start, Software Protection Service timing out

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

Maybe you are looking for