Function of simple percentage

Hello and thanks for trying to help me.

In my view, this is a simple problem but I couldn't find answers through the help site.

So, basically I want my column B as income and column C 10% of column B

For example if B1 is $10,000, then C1 would be $ 1,000.

and so on. What is the formula in C to get to this?

Thank you

You can use one of these methods:

= B1 * 10 PERCENT

or

B1 * 0.1 =

or

= B1 *(1/10)

Tags: iWork

Similar Questions

  • Illustrators function more simple most stopped working. Probably just a shortened misstake?

    Illustrators function more simple most stopped working. I am an experienced user of Adobe programs but now I accidentally turn off something. I can't change a form. to scale or rotate... Normally, it is enough to move the cursor to the corner of an image / shape and press ctrl. Thus, it becomes a symbol to rotate, but it no longer works... How to get back my dear regular Illustrator? Please help me.

    chnas,

    It sounds like view > show the rectangle enclosing.

    You can switch between displaying and hiding it by (inadvertently) by pressing Ctrl / command + SHIFT + B.

  • HELP to ' SQL error: ORA-00937: not a function of simple-group.

    < p >
    Hello world:

    I have a forum based on oracle 11g database. There two tables: article of thread and the relationship between the two is "one-to-many.

    I want to list the total number of seen of all the discussions in each section, and I write the sql code:

    Select s.secname, sum (sum1) of join of s section

    (select secid, sum1 sum (thrviewednum) of the Group of threads by secid) tt WE s.secid = tt.secid;



    The 'secid' column is the pharmacokinetics of the section table and FK of the table of thread, the "thrviewednum" the number of views of a thread.

    But I get the error:

    Error in the command line: 1 column: 7

    Error report:

    SQL error: ORA-00937: not a function of simple-group

    I can't understand the problem, could someone help me? Thank you.
    < /p >

    Hello

    Use this

    Select s.secname, sum (sum1) of join of s section

    (select secid, sum1 sum (thrviewednum) of the thread by secid group) THE group s.secid tt = tt.secid by s.secname;

    This is because the select statement contains a column that is not part of any group function, so this column must be there in the group by clause

    Concerning

  • function formula and percentage of power

    Hello

    I need to create this kind of report and does not know how to get the formula for the annual.

    Total countCancelledRestRetention rate90 daysAnnualAnnual renewal
    127 3205 390124 86795,28%4.7%17.6%82.4%
    128 4504 890124 58995,23%4.8%17.7%82.3%

    In MS excel, the formula for the annual is = 1-(retention rate) ^ 4 and the result is a percentage.

    All are correct except for annual renewal and annualized data.

    I get no response percentage so instead of the figure above, I'm 82415038.70 (for example no. 1 above) of the query below.

    Can someone please? Thank you very much

    
    
    
    

    Select c.prod, sc.total_count, count (c.id) as cancelled,

    SC.total_count - count (c.id) as rest,

    Round ((sc.total_count - count (c.id)) sc.total_count * 100.2) as Retention_Rate,

    round (100-((sc.total_count - count (c.id)) sc.total_count * 100), 2) as "90 days."

    (round ((100-((sc.total_count - count (c.id)) sc.total_count * 100)), 2)) * 4 as annual.

    round (100-(100-((sc.total_count - count (c.id)) sc.total_count * 100)) * 4, 2) as Annualized_Renewal

    Customer c,.

    (select count (id) as total_count, client prod)

    where start_delivery < = sysdate

    and paid_until > = sysdate

    and cancellation_date > = sysdate

    and cancellation_code =' '

    Group of prod

    ) sc

    where c.cancellation_date between & < name = "Date" default = ' 01/01/2013' type = ' date' >

    and & < name = "Date up to the" default = ' 31/03/2013' type = 'date' >

    and c.prod = sc.prod

    C.prod group, sc.total_count

    I think that there are not a lot of space for improvement of this query.

    Like Chris mentioned the exponential function in SQL is POWER.

    However, in excel the percentage value is always be between 0 and 1. As 0.83. And this value is then switched on.

    From the mathematical point of view, it's the value you need to use (0.83 ^ 4 instead of 83 ^ 4)...

    But lets start at your request. You select twice in the customers table. This is not necessary and is simply your slow query.

    Here is an approach to circumevent that and other issues.

    As I don't have your customer table, I can not really test that. But try to follow step by step and adapt it to your needs.

    Step 1 - create a query with countdown and canceled the County.

    not tested

       select count(case when sysdate between start_delivery and paid_until
                         and cancellation_date>=sysdate
                         and cancellation_code=' '
                    then 1 end ) as total_count
             ,count(case when c.cancellation_date between :date_from and :date_until
                    then 1 end ) as cancelled
             ,prod
       from customer
       group by prod;
    

    Step 2 - use the previous query and add the retention and the annualized rate

    with cust as (
       select count(case when sysdate between start_delivery and paid_until
                         and cancellation_date>=sysdate
                         and cancellation_code=' '
                    then 1 end ) as total_count
             ,count(case when c.cancellation_date between :date_from and :date_until
                    then 1 end ) as cancelled
             ,prod
       from customer
       group by prod
       )
    select prod, total_count, cancelled
              ,total_count - cancelled as remaining
              ,1 -(cancelled / total_count ) as retention_rate
              ,power(1 -(cancelled / total_count ),4) as annualized_rate
    from cust;
    

    Step 3 - format the output

    with cust as (
       select count(case when sysdate between start_delivery and paid_until
                         and cancellation_date>=sysdate
                         and cancellation_code=' '
                    then 1 end ) as total_count
             ,count(case when c.cancellation_date between :date_from and :date_until
                    then 1 end ) as cancelled
             ,prod
       from customer
       group by prod
       )
       , cust_ret as
       (select prod, total_count, cancelled
              ,total_count - cancelled as remaining
              ,1 -(cancelled / total_count ) as retention_rate
              ,power(1 -(cancelled / total_count ),4) as annualized_rate
         from cust)
    select prod
         , total_count
         , cancelled
         , remaining
         , round(retention_rate * 100,2) as ret_rate_percent
         , round(1-(retention_rate * 100),1) as ninety_days
         , round(1-(annualized_rate * 100),1) as annual
         , round(annualized_rate * 100,2) as annual_rate_perc
    from cust_ret;
    
  • The simple percentage calculation

    I have two fields: 1 field represents one amount (formatted as a number of 1,234.56) and zone 2 represents a percentage (formatted as a number with no decimal point).

    If the user enters 50 in zone 2, I want to calculate 50% of zone 1

    My results of current script is "1.0". What am I hurt?

    var v1 = getField("Field1").value

    var v2 = getField("Field2").value

    Event.Value = v1(v2/100)

    Thank you in advance!

    OK - got it understood

    I got a letter in my domain name... duh

    Thank you

  • Not a function of simple-group

    I have the following case statement:
    select 
            (case max (country_desc)
             when 'England' then  'British'
             when 'Italy'   then  'Italian'
             when 'Germany' then  'German'
             when 'France'  then  'French'
             when 'Spain'   then  'Spanish'
             else country_desc
             end) country_desc
      from   xtable
      where  id = 200839; 
    How can I go about inserting another in the instruction box above, b/c the way I coded it currently throws a "not a single group group function."
  • Is there a way to parse a string containing % (percentage symbols) using the function 'analysis of the chain?

    I am communication in series with a mirror device and the syntax of the input string contains this text: "% hr ="

    I was not able to find a way to say to the function that the percentage here is not a format specifier. Is it possible, or should I just try to use a different function?

    Thank you.

    Use %% in your format string for what he knows to use the percent literally.  So % RH = %f

    EDIT: Darin has one here in front of me.  It seems to be-% and % both work.

  • Is it possible to modify this script to be reusable in a function?

    Hello

    I have this script inside a load of buttons (currently 16 individual buttons)

    They all have a different value and increment them positively and some negatively, they are + - buttons

    Here's the Script:

    var fldTI1 = this.getField ("20mmLeft");

    If (isNaN (fldTI1.value)) {}

    fldTI1.value = 0;

    }

    else {}

    fldTI1.value += 1;

    this.getField("LeftAddOnTotal").value += 20;

    }

    I wonder if I can do this more universal so that I don't have to write it in a function and call that function?

    I know that I'll probably have to write 2 functions for each value (15, 20, 35 and 50), one for the positive growth and the other for the negative increment.

    I was thinking something in the sense of the use of var fldT1 = this.getField (event.target.name); or something like that so that the var takes the name where the function was called?

    I tried to look in the syntax event.target and it does but I can't find an explanation clear about what it actually does.

    Any help and suggestions would be greatly appreciated.

    Thank you in advance!

    In general, I have to debug a problem like this, I would add the following line at the top of the function:

    app.alert("addOnValues: " + name + " " + name2 + " " + op + " " + amount);
    

    This will display all the parameters passed to the function and will show you that the service has got actually called. Alternatively, you can use the JavaScript debugger and set a breakpoint on the first line of this function and simple then the code.

    However, in this case, I can tell you what the problem is (the first time that I looked at your code, I only had that my cell phone, now that I'm working on the computer, it is easier to see what's going on): if/else if construct you use has the same conditions several times:

    if (op == "inc") {
      // ...
    }
    else if (op == "inc") {
      // ...
    }
    

    In an if/else if/else construction, only the first matching condition will be executed. After that, the shell passes at the end of the construction and running the following command. You will need to create if statements at two levels:

    if (op == "inc") {
        if (isNaN(fldName.value)) {
          // ...
        }
       else {
         // ...
       }
    }
    else if (op == "dec") {
       if (isNaN(fldName.value)) {
         // ...
       }
      else {
         // ...
      }
    }
    else {
         // ...
    }
    

    You can simplify this a little more because you know that the 'isNaN' case action is always the same, so you can use this:

    if (isNaN(fldName.value)) {
    }
    else if (op == "inc") {
    }
    else if (op == "dec") {
    }
    else {
    }
    

    Once again, it is quite normal JavaScript and has nothing to do with the implementation of Acrobat JavaScript. You can read on the basis of the JavaScript syntax.

  • Help with error - 934 group function is not allowed here

    Hey there will, I'm having problems with a request and just does not know how to do it without error.

    I'm trying to get all the employee emerging infectious diseases that have less than 2 number max of DID (dependants) in the table.

    It's my current query

    SELECT Employee.LName. ' ' || Employee.Fname as Full_Name, Employee.EID

    The left outer JOIN employee depends on Employee.EID = Dependent.EID

    Having Count (DID)--2 > ((select Max (N) as From (SELECT Employee.EID, Count (DID) As N FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID, Count (DID))) N)

    Order of Employee.Lname, Employee.Fname

    Which gives me an error on column 4, no matter what I do. If I remove the Count (DID) in the group by clause (which I tried it earlier), it gives me a is not an error of the function of single group...

    The most frustrating thing is that

    Select Max (N) as From (SELECT Employee.EID, Count (DID) As N FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID) N

    Works perfectly, but because it's a mission, I have to do in one step (no substeps/views)

    Any help?

    Thank you very much

    Hello

    ac981e5d-D10A-4520-BF42-23a894d04fb7 wrote:

    Ok. I'm taking your code in a view... I get this.

    and there is an orange underscore and a text of the error that says

    Select incoherent list in group by... change the group by clause of e.fname, e.lname, e.eid, count, max

    Which isn't what either the Oracle database would do.  Everything about orange (or any other color) sounds like it is caused by a front-end that could be interacting with Oracle.  In addition, the Oracle error messages always come with a 3-letter-5 code, as ORA-00933.

    under the selection internal (first medium)

    You have deleted the WITH clause.  The parser can recognize the error when it has reached the first left parenthesis.

    Create view AS A10T2

    (

    SELECT e.lname. ' ' || e.fname AS full_name

    e.eid

    (D.) AS this_group_count

    MAX (COUNT (d.)) ON (AS highest_group_count)

    E employee

    LEFT OUTER JOIN dependent d ON e.eid = d.eid

    GROUP BY e.lname, e.fname, e.eid

    )

    SELECT full_name

    eid

    Of aggregate_results

    WHERE this_group_count > = highest_group_count - 2

    ORDER BY full_name

    You need the WITH to define this clause means "AGGREGATE_RESULTS":

    Create view AS A10T2

    WITH aggregate_results AS

    (

    SELECT e.lname. ' ' || e.fname AS full_name

    ...

    Why do you have an ORDER BY clause in a view?   (It is probably not cause of your errors, just make the inefficient view)

    Command line error: column 5: 23

    Error report-

    SQL error: ORA-00933: SQL not correctly completed command

    00933 00000 - "not correctly completed SQL command.

    * Cause:

    * Action:

    This is another indication that some front is getting involved.  Looks like your front-end reports the exact Oracle error message, "0RA-00933" and then builing it's own error code, "00933. 00000 ", on this basis.  ORA-00933 is a reasonable mistake to wait if you omit the line ' WITH the aggregated results AS.  Once again, until I can actually run your code, I can't test it, and I can't run your code until you post CREATE TABLE and INSERT statements for some examples of data, or change the problem to use commonly available tables, such as those in the scott schema.

    and when I try my code

    CREATE VIEW A10T2 AS

    SELECT Employee.LName. ' ' || Employee.Fname as Full_Name, Employee.EID

    The left outer JOIN employee depends on Employee.EID = Dependent.EID

    Seen (Count (DID)) + 2 > (select Max (N) From (SELECT Employee.EID, Count (DID) As "N" FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID))

    Order of Employee.Lname, Employee.Fname

    I get

    Command line error: column 2: 8

    Error report-

    SQL error: ORA-00937: not a function of simple-group

    00937 00000 - 'not a single-group function.

    * Cause:

    * Action:

    Then the orange underscore even under my inner ("select employee. EID, Count (DID) as "N" ") says to change the Group of Employee.eid, Count (DID)

    I just don't understand why he tells me to group them by Count (DID)?

    Isn't that what you did in your original post, and I have explained in answer #2?  If you continue to repeat the same mistake, you can expect continue to get the same error.  Given that you have a code, you know causes an error, do you think really that what makes a vision will cause the error to disappear?

    The inner query works fine on its own...

    Right; It's the outer query where you are missing the GROUP BY clause.

  • Need help with the listagg function

    Hi all

    I try to use Listagg in the query below, but not able to get the answer. It is throwing an error message saying ORA-00979: not a GROUP BY expression.

    If I try to remove the Group By function and run the query, I get the following error ORA-00937: not a function of simple-group.

    Help, please.

    Select Distinct V.User_X, V.Original_Request_Id, (V.Support_Group_Name, ',') listagg Group (order of V.Support_group_name) as Group1,

    T.Individualassignedto, T.Status, T.Groupassignedto, T.Ticketcategory, T.Tickettype, T.orgcompany, T.submitter,

    T.Orgassignedto, T.Urgency

    Display V

    INNER JOIN K_TICKET T ON T.TICKETNUMBER = V.ORIGINAL_REQUEST_ID

    V.Original_Request_ID group

    Because you use a GROUP BY, you don't need SEPARATE.

    All the columns you are not aggregate (list) should be in the GROUP BY.

  • Function PIPELINE in oracle

    Hello

    Can any body shows when to use the PIPELINE function in simple words.


    Thank you
    Vinod

    910575 wrote:

    Can any body shows when to use the PIPELINE function in simple words.

    Wrong question.

    Good question - WHAT is a function table of pipeline.

    If you understand WHAT it is, you will be able to determine WHEN to use it.

    So did you read the documentation? Try coding your own function of pipeline? Do you understand what it is and how it works?

  • Loading external SWF files: make things simple... Still need to help here =)

    Hi all! First of all, sorry for my English... I'm Brazilian and English is not my mother tongue.

    This is my first post , supposed to be my first post and I'm learning AS3. Didn't know this forum, but now I hope to have time to visit it a lot for help and be helped! =)

    Well, I am trying to import external files to my main flash with buttons file. Yes, this is a newbie question, but I'm learning... I click the button 1 and content 1 is loaded, click on the button 2 and content 2 is loaded and so on. So, I got two ways to do:

    edit: The code below works fine now...

    montreal.addEventListener (MouseEvent.MOUSE_UP, loadCity);
    dublin.addEventListener (MouseEvent.MOUSE_UP, loadCity);
    sydney.addEventListener (MouseEvent.MOUSE_UP, loadCity);
    ...

    var box: MovieClip = new MovieClip();
    addChild (box);
    Box.x = 20;
    Box.y = 20;

    function loadCity (event: MouseEvent): void {}
    currentCity var = event.target.name;
    remove all the children from the box
    While (box.numChildren > 0) {box.removeChildAt (0) ;}}
    var swfRequest:URLRequest = new URLRequest (currentCity + ".swf");
    var swfLoader:Loader = new Loader();
    swfLoader.load (swfRequest);
    box.addChild (swfLoader) ;}

    The problem with this first selection, is that whenever I click on a button, it repeats the content of the 'box'... instead, the loaded content is stacked on the last of them, and I know not how to clean it... The user Andrei toured with the statement "all" so that the code above works, but I don't know how to use tween with him...

    So here's the second option:

    Import fl.transitions.Tween;
    Fl.transitions.easing import. *;

    Montreal .buttonMode = true;
    dublin.buttonMode = true;
    sydney.buttonMode = true;
    rio.buttonMode = true;
    paris.buttonMode = true;
    london.buttonMode = true;
    home.buttonMode = true;

    var box: MovieClip = new MovieClip();
    addChild (box);
    Box.x = 20;
    Box.y = 20;

    var cityLoader:Loader = new Loader();
    var cityURL:URLRequest = new URLRequest ("montreal.swf"); I use it to show a city when the site is open
    cityLoader.load (cityURL);
    box.addChild (cityLoader);

    * Here I add headphones to button, each calling its own function as:

    montreal.addEventListener (MouseEvent.CLICK, loadMontreal);

    function cityTweens (): void {}
    var cityIn:Tween = new Tween (box, "y", Strong.easeOut,-350, 20, 1, true) ;}

    function loadMontreal(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("montreal.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadDublin(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("dublin.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadSydney(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("sydney.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadRio(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("rio.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadParis(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("paris.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadLondon(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("london.swf");


    cityLoader.load (cityURL);
    cityTweens() ;}

    function loadHome(event:MouseEvent):void {}
    var cityURL:URLRequest = new URLRequest ("home.swf");
    cityLoader.load (cityURL);
    cityTweens() ;}


    Well well, the second option "" works, but I have some problems with interpolation of... I have to wait the Tween to complete before you click another button or the interpolation will be bug... I know not how to disable buttons until the Tween is finished .

    Now, I used to have a Tween for each function, but now I got inside a function and just call it inside each function. Simple for you but I thought WOW, when I had the idea and put it into practice! But I repeat myself again a lot of code here with the "cityLoader.load (cityURL); but when I try to put it inside the function "cityTweens", it will just open the city of Montreal, maybe because I'm the appellant as soon as the site opens...

    I'm pretty sure I can make simple things, like mixing the idea of the first code (currentCity + ".swf") so I do not need to call a function for each button. I don't know how... ...

    Could someone help me? Also, I will be VERY happy if you give me a tip as good practices that I'm not following.
    Thanks in advance!

    Post edited by: newToAS3

    Adjustments to the code that deal with it below. This is not a complete code - make full changes yourself.

    import flash.events.EventDispatcher;
    // hold all the buttons in an array
    var buttons:Array = [montreal, dublin, sydney, rio, paris, london, home];
    // add listeners
    addListeners();
    // function that adds listeners
    function addListeners() {
         for (var k:String in buttons) {
              EventDispatcher(buttons[k]).addEventListener(MouseEvent.CLICK, loadSWF);
         }
    }
    // removes event listeners
    function removeListeners() {
         for (var k:String in buttons) {
              EventDispatcher(buttons[k]).removeEventListener(MouseEvent.CLICK, loadSWF);
         }
    }
    
    function loadSWF(e:MouseEvent):void {
         // remove listeners
         removeListeners();
         // the rest of code goes here
    }
    
    function tweenFinished(e:TweenEvent):void {
         // add listeners back
         addListeners();
         // make Tween instance eligible for arbage collection
         e.target.removeEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
         // now you can remove tweened object from the box
         box.removeChild(e.target.obj);
         e.target.obj = null;
    }
    
  • Using a cell in another formula of duration

    I try to get a moving percentage, that shows a daily update that the completion percentage is for a period of 12 months. I entered the start date in a cell and the function of the DATE in the next cell, then the formula duration in the third cell, showing the answer in days. When I try to make the formula simple percentage (and Yes, the cell is properly formatted) by taking the amount in cell LENGTH and dividing by 366, I don't get either nothing - no formula recorded in the cell, or something that looks like a 1:02:45.3 response time or something like that.

    so, I can use a cell formatting TIME in another formula and, if so, how?

    Thank you!

    Hi pbrinck,.

    I don't know what you want to do. Maybe this will give you something to work on.

    Start in B1 (typed) date

    B2 = today() formula

    Formula in B3 (showing 352 days) = B2−B1

    Formula in B4 (B4 is in percentage format, decimal 0) = DUR2DAYS ÷366 (B3)

    Please call with questions.

    Kind regards

    Ian.

  • Refresh the library (adding missing albums)

    OK, I get that itunes is not automatically sweeping the "media folder location" during the files after the initial launch after installation. Even what is an automated scan, which scans all drives from what I understand (because no media file has been specified yet).

    Now, I added manually tons of albums in my media folder. These albums are subfolders album separated into separate artist folders in my media folder. I can't 'add to library', and then select all and press to enter. This opens the last artist folder in alphabetical order. I must therefore compare my library with my media folder and manually add all songs in the album missing files? It's just stupid. I could also reinstall itunes and rescan everything...

    There must be an easier way... is it?

    Sorry, but I'm very frustrated because this is a function of SIMPLE who always missed and is clearly not here to promote the purchase of songs via itunes only.

    Thanks in advance for the help.

    Anyone?

  • MAX corrupt? error-88302, list of odd DAQmx devices

    My ATE has stopped working Sunday morning with an error (I didn't witness) which led me to a corrupted driver OR DMM.  I had this happen a few times before, so I fixed (to the MAX).  This does not solve my ATE.  The sequence of events becomes blurred here, but at some point scroll sequence TestStand helped me to find that the PXI-2570 was not exploited.  I got an error message which suggested that the MAX database was corrupted, so I deleted the data folder and restart without solving my problem.

    The configuration in MAX shows a difference between this date and an equivalent system:

    Note that there are no green glyph near the PXI-2570.  That's what I'm focusing on today.  Also, why this device does not appear in the tree view on the left?  He does his sister ATE.  I swapped with a good map and it has not improved.

    I reinstalled 8.9.5f7 DAQmx because research on one other error (-88302) suggested that it would help.  There can be no.

    Any suggestions will be greatly appreciated.

    Hey Jim,.

    You are right that the PXI-2570 modules should appear under DAQmx devices.  This leads me to believe that the DAQmx driver is not installed correctly.  One possibility is that you have two different versions of DAQmx installed in different locations on your machine (Yes, it is possible .)  DAQmx is not designed to work with the instances simultaneously and is probably confused, thus failing to load the 2570... Unfortunately, this theory is not bullets, as the DAQmx 6233 is picked up correctly, but all bets are off when there are several DAQmx drivers installed.

    My first recommendation is to remove all the DAQmx facilities, check that there is no "DAQmx" installed in MAX version and then reinstall the original version of DAQmx on your ATE... no need to change the SW.  If this does not work, step up and functioning more simple troubleshooting is the image of the ATE from another machine.  Of course, this does not determine the root cause, but I think there is a change of configuration of the software.  In this case, the 88302 error internal NOR-ORB and should not be sent to the user in the first place... so I would say something is crazy with your installation DAQmx.

Maybe you are looking for