Multiple functions in cells

I think I may have done this before, but forgot how I got there…anyway, I would like to add to cell values (vertically, if that matters), then add state sales tax for the sum of the two values. I would like to avoid another subtotal cell.
Thank you.

Amounts in C2 and C3, Sum with tax in any other cell, Sales tax rate 6% (0.06):
=(C2+C3)*(1+0.06)
Or as many amounts as needed (all subject to same tax rate) in column C, Header rows above first amount, formula in a Footer row in column C, same tax rate (6%):
=SUM(C)*(1+0.06)
Regards,
Barry

Similar Messages

  • How to keep multiple function modules under one Web service

    Hi Experts,
    I have Three RFC function modules and i need to create one web service for these three RFC function modules. I know How to crearte a web service for one function module.
    please suggest me How to keep multiple function modules under one Web service.
    Thanks in advance
    Lakshminarayana

    Hi Lakshmi,
    The best way to do it is to assign all the three RFC Enabled FM's to one function group. Later on the top menu in Utilities you get an option to Create a Webservice from a Function Group.
    You can create one single Webservice using all the the 3 FM's.
    I hope this helps.
    Thanks,
    Manu

  • How do I select multiple, non-adjacent, cells in Numbers?

    I have a spreadsheet that I need to select multiple non-adjacent cells for the purposes of highlighting them and I can't figure out how to do it. The Excel equivilant would be highlight a cell and then click he desired cell while pressing cmd. This does not work nor do fn, ctrl or option. Is this possible and if so how can I do it?

    K
    It's apparently one of those many things that haven't been implemented in the iCloud beta. You'll be able to make that type of multiple selection if you spring for the OSX version of Numbers.
    Jerry

  • Using Multiple Functions with in members selection of Hyperion Financial St

    Hello everyone, I am trying to retrieve all the level 0 entity members from a specific Level 3 entity member. Can I use multiple Functions with in Report studio to do this?? Or is creating an alt hierarcy my only option?
    Thanks

    You can try doing System Defined member list Lev 0 AND Descendants of Lv 3 member
    JTS

  • Timer that "fires" multiple functions

    Hi all
    I really need a Timer that shoots multiple functions. The
    Timer Class just handles one function and therefore is not good
    enough for my project. The Timer should work something like this:
    After 1 seconds fire functionOne
    After 4 seconds fire functionTwo
    ...and so on...
    Time is really crucial in my project (down to milliseconds)
    so I really can´t use the Timer Class and fire "new" Timers
    all the time because Flash needs some milliseconds to process all
    the code and in the end it sums up to kind of a lot of time.
    I hope I have been clear enough.
    Any advices on how to do this?
    Regards
    //Leine

    Leine,
    > I really need a Timer that shoots multiple functions.
    The Timer
    > Class just handles one function and therefore is not
    good enough
    > for my project.
    The first thing that comes to mind is, use numerous
    instances of Timer.
    > Time is really crucial in my project (down to
    milliseconds) so I
    > really can?t use the Timer Class and fire "new" Timers
    all the
    > time because Flash needs some milliseconds to process
    all the code
    Aha. Then how about a single "master timer" that keeps track
    of a
    cumulative delay, using modulo to trigger separate functions?
    var cumulativeDelay:int = 0;
    var timer:Timer = new Timer(500, 0);
    timer.addEventListener(TimerEvent.TIMER, masterTimer);
    timer.start();
    function masterTimer(evt:TimerEvent):void {
    cumulativeDelay += 500;
    if (cumulativeDelay % 1000 == 0) trace("every second");
    if (cumulativeDelay % 2500 == 0) trace("every two and a half
    seconds");
    if (cumulativeDelay % 4000 == 0) trace("every four
    seconds");
    Not sure if that would be any more efficient than numerous
    instnaces,
    but worth a shot.
    David Stiller
    Co-author, ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/2s28a5
    "Luck is the residue of good design."

  • Database Design for Multiple function site

    Hi
    I am working on one project which involve multiple function
    site, such as
    Company Product Catelog, Customer Support Forum, Document
    Exchange Engine and
    etc...
    Normally we will combine ALL TABLEs into one DATABASE.
    My question are:
    1) Is my break them to individual DATABASE, will it perform
    better?
    Means Product Catelog and Forum will have different
    DATABASE, but they
    will using the same DOMAIN NAME.
    2) I am worried about the break down and corruption of
    DATABASE, so I have the
    idea to separate them out. Are my idea correct or wrong?
    3) I am seeking for better DATABASE DESIGN, because I know
    the database will
    become huge in future. I request for your idea and opinion.
    Thank you very much.

    Creating views: not an option I think. It would involve a lot of programming with 'instead of' triggers etc.
    Seperate databases: a good way if the locations are completely independant and do not share information. This involves more DBA work.
    Separate schema's in one database: this would make public synonyms impossible, and is probably not a good option.
    Adding a location id to tables: the best way I think, and flexible. You can easily add another location, and locations can easily share information.

  • Multiple functions in one button

    Good evening,
    Is it possible to run multiple functions with one button?
    For example: With a button to open and close an object?
    Thanks 

    Hi Rinku,
    This is an example for you:
    A Piano Key Control in C#
    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.

  • One button, multiple functions

    Hello.
    I have used the loader script to load an external swf into current project. I have added a button to unload the external file when wanted, and was wondering if you could have multiple functions for that button, so that when you click it to unload it works as a 'home' button as well, and takes the user back to the mainpage again?
    AS3 btw.
    Might be wise to mention that im kinda new to adobe flash and as3, and not sure if the way i have used to load the external swf was the easiest. Seems like a few have had some issues with this subject before me as well.
    All pointers in the right direction is appreciated. Cheers.

    Thanks alot for answer Ned Murphy.
    As I've might failed to mention, is that the button is intended to do two things, unload and return to main page, at the same time. So basically a one click operation.
    To update the situation, I've tried this as a code;
    btnHeim.addEventListener(MouseEvent.CLICK,unloadSwf);
    function unloadSwf(e:MouseEvent):void {
        loader.unload();
    btnHeim.addEventListener(MouseEvent.CLICK,tilbaks);
    function tilbaks(event:MouseEvent):void{
        gotoAndStop(1,"Mainpage");
    It kind of work, as it unloads and takes you back to the main page. Only thing then is that the buttons on mainpage doesnt work any longer, and one of them disappear?
    I've never been this deep into AC3 i think, so not sure what the problem is, except for the fact that there is some issues going on.
    This is the error that shows up on 'output' after btnHeim is clicked.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Mappevurdering_web_fla::MainTimeline/frame2()
        at flash.display::MovieClip/gotoAndStop()
        at Mappevurdering_web_fla::MainTimeline/tilbaks()
    Thanks again

  • In Pages, using an Invoice Template, how do I add columns, rows, or add individual functions to cells like I would using Numbers? Is it possible? I'd rather not use numbers because the invoice has a lot of writing as well.

    Here's a sample of the invoice. I would like to automatically calculate the 'amounts', 'totals' and 'subtotals' sections.
    Is this possible? How do I do it?

    Got it!
    Select the cells you wish to either SUM, PRODUCT, COUNT, etc...
    Then, at the top of the screen, press on the INSERT heading,
    then press on the FUNCTION setting,
    then press on the actual function you are looking for,
    and it should automatically insert the function into the appropriate cell it is needed....

  • Avoid multiple function calls in query

    I have a query as follows:
    select
    col1,
    substr(test_func(col2,test_func(col3)) , 1 , length(test_func(col2,test_func(col3))),
    col3,
    substr(test_func(col2,test_func(col3)) , 1 , length(test_func(col2,test_func(col3)) - 5),
    col4
    from table1
    where pk_column = pi_param;
    The test_func has couple of select queries inside and returns a string which i need to split in a particular way and return as two different column values.
    To optimize performance, I need to reduce the multiple calls to test_func function.
    I tried query with query like below:
    select
    col1,
    substr(func_ret_value,1,length(func_ret_value)) value1,
    col3
    substr(func_ret_value,1, length(func_ret_value) - 5 ) value2,
    col4
    from(
    select
    col1,
    col3,
    test_func(col2,test_func(col3)) func_ret_value
    col4
    from table1
    where pk_column = pi_param);
    Above approach works but when i check the trace of above query , it still shows multiple executions( of the select queries inside the function.
    Also there is no performance gain.
    How do i avoid these multiple calls to the function and improve performance.
    Thanks.

    Hi,
    You can call the function once, in a sub-query, then use it (by referencing the column alias tf in the example below) as often as you want to in a super-query, like this:
    WITH     got_tf     AS
         SELECT  table1.*     -- or list columns needed
         ,     test_func ( col2
                     , test_func (col3)
                     )     AS tf
         FROM    table1
    SELECT  col1
    ,     tf          AS value1     -- = SUBSTR (tf, 1, LENGTH (tf))
    ,     col3
    ,     SUBSTR ( tf
                , 1
                , LENGTH (tf) - 5
                )      AS value2
    ,     col4
    FROM      got_tf
    WHERE      pk_column     = pi_param;If possible, create the function as DETERMINISTIC.

  • How to create multiple function for each value

    Hi, I'm new to LabVIEW.
    I need some help. Attached is my LabVIEW file.
    I want to change the Formula VI for the 'Air Velocity vs Time' waveform to another formula (or multiple formula (can I use MathNode Script for this?)) to let it handle multiple values from the data and then display the result on the waveform graph. Or how can I do this?
    Another one is how to change the scale for the 'Measurement Flow' from sensor to pressure? Using pressure sensor 0V-10V to -500Pa-500Pa.
    Thanks in advance.
    Attachments:
    Exhaust EBT Wind Tunnel 1.1.vi ‏399 KB

    Faruq wrote:
    I want to change the Formula VI for the 'Air Velocity vs Time' waveform to another formula (or multiple formula (can I use MathNode Script for this?)) to let it handle multiple values from the data and then display the result on the waveform graph. Or how can I do this?
    You could simply use a case structure around the Formula Express VI. When you say MathNode Script I'm assuming you're referring to MathScript? Or are you referring to the Formula Node. With either one you'd need to convert from dynamic data to arrays. With MathScrip you need to be aware that starting with LabVIEW 2009 MathScript requires a separate license.
    Another one is how to change the scale for the 'Measurement Flow' from sensor to pressure? Using pressure sensor 0V-10V to -500Pa-500Pa.
    You can create a custom scale for your measurement. You can do this in the DAQ Assistant.
    Attachments:
    DAQ_assistant.png ‏30 KB

  • Video Streaming from multiple camera to cell phone.

    I have about 5 webcams on a network in a different city.  One of these webcams I have been successful at setting up live video streaming to my cell phone. However when I tried to setup and view a second camera (same model), but  I cannot get it to successfully load and view. The second camera has a different access code also.
    Any Suggestions?

    Hi,
    Camera are WVC54GCA
    Router is a WRT300N.
    Like I stated earlier, one of these cams I can stream fine to my backberry storm,(Port 554 is forward to the ip address of the camera) but can't seem to configure the other for cell phone viewing.
    All cameras can be viewed via http via computers.

  • How to give a button multiple functions

    So I have a button for audio which plays it and a button that stops the audio. What would I need to do with the actionscripting to hide the play audio button when the music is playing and just show the audio off button, and then hide the off button when it's clicked and show the play button in its place?

    import flash.events.MouseEvent;
    play_btn.addEventListener(MouseEvent.CLICK, playFunc);
    stop_btn.addEventListener(MouseEvent.CLICK, stopFunc);
    play_btn.x=stop_btn.x;
    play_btn.y=stop_btn.y;
    stop_btn.visible=false;
    function playFunc (e:MouseEvent):void {
        play_btn.visible=false;
        stop_btn.visible=true;
        //the code to play
    function stopFunc (e:MouseEvent):void {
        stop_btn.visible=false;
        play_btn.visible=true;
        //the code to stop

  • Multiple function signatures in JSP custom tag file

    I'm writing a jsp .tag file and I've encountered the following problem. I have those two functions :
    private void iterateThroughChildElements(Element element)
         for (Iterator i = question.getElements().iterator(); i.hasNext(); )
              this.parseAndDisplay( (Element) i.next() );
    private void parseAndDisplay(Question question)
    private void parseAndDisplay(Answer question)
    (......)Both Answer and Question objects are elements but I get an error from the compiler which says that no correct signature was found for the parseAndDisplay function.
    What could be the problem ? Do I have to cast the objects according to a instanceof comparaison ??

    There was an error in my code, it is as follows :
    private void iterateThroughChildElements(Set elements)
         for (Iterator i = elements.iterator(); i.hasNext(); )
              this.parseAndDisplay( (Element) i.next() );
    }

  • Activating only one function-exit in a multiple function-exit in CMOD

    Dear All,
    I am using customer-exit for doing validation in PO during saving. I am using EXIT EXIT_SAPMM06E_012 under enhancement
    MM06E005. The code is working fine. The problem is that when I am activating the screen all the components under that enhancements are getting activated. There are 10 function-exits, 6 screen-exits and 2 incude tables. I have not  added any new screen or done custom include. I only want to activate EXIT_SAPMM06E_012, rest I want to deactivate. It is giving a dump in production server when we are trying to create a contract as it is looking for a screen 0211 which we have not created.
    Regards
    D. Mallick

    am using customer-exit for doing validation in PO during saving. I am using EXIT EXIT_SAPMM06E_012 under enhancement
    MM06E005. The code is working fine. The problem is that when I am activating the screen all the components under that enhancements are getting activated. There are 10 function-exits, 6 screen-exits and 2 incude tables. I have not added any new screen or done custom include. I only want to activate EXIT_SAPMM06E_012, rest I want to deactivate. It is giving a dump in production server when we are trying to create a contract as it is looking for a screen 0211 which we have not created.
    HI ,
    You can activate only one function exit EXIT_SAPMM06E_012, But you must and should create below empty screen and active Using SE51.
    SAPLXM06                       0101
    SAPLXM06                       0111
    SAPLXM06                       0201
    SAPLXM06                       0211
    SAPLXM06                       0301
    SAPLXM06                       0311
    Thanks & Regards
    Sudheer Madisetty

Maybe you are looking for

  • Laserjet 600 M602 Delete print queue

    Hi, I have deleted jobs from my computer's printer folder, yet they are still being held in the printer. When I restart the printer, the jobs start printing. I know how to delete them one at a time. The job starts, delete it, the next job starts, del

  • How to force a restore of contacts and calendar events from Palm Profile? (and memos and tasks!)

    Yesterday I had to do a partial erase restart of my beloved Palm Pre.  In the past I have had to do full data restorations, and have had no problems at all.  This time, however, my Pre did not recover the dozens of contacts saved in my Palm Profile,

  • Can anyone tell me, should the bold sync with a Mac, Entourage 2008?

    I'm having load of problems with pocketmac, their support is not the best at getting back to you fast and I am really losing a lot of time on this now. just wondering, should I be syncing no probs with the following: Macbook Pro? Entourage 2008? Blac

  • Corrupt or lost file

    When printing a series of four photos each on letter size photo paper I hit one group of four that would not print and gave me the message that one of the JPG images "either cannot be located or is corrupt." Is there a way to determine whether there

  • X1C Battery not working

    I just purchased a refurb X1 Carbon. I plugged it in and it worked just fine. Then i pulled the power plug out and whoosh - it went dead right away. I tried turning it ON but it just won't. Plugged the power back in and it turn  back on just fine. Th