How to take result of multiplication and copy over to another spread sheet without taking formula?

I am trying to copy over the results of my product formula and copy it over to a separate spreadsheet.
Every single time I try to copy the results over, the formula seems to tag along with it!
EXAMPLE: I took 17.99 and multiplied it by 3.5 to get 62.97. All I want is the 62.97 so that I can put it on a separate work sheet... every time I try doing that... it copies over the formula!
So frustrating. Is there anyway to get this done? Or do I have to multiply all 2000+ equations manually and type it in myself?

Hi gn,
Glad to help. Thanks for the green tick .
Happy Numbering!
Regards,
Ian.

Similar Messages

  • Script to take every 5th file from a folder and copy it to another folder

    How can I tell applescript to take every 5th file of a folder of say 2000 files and copy them to another location? I want to copy the 5th, 10, 15th, 20th files and so on of 2000 files so I will have only 400 files.
    I guess I want to make a list of all the files and then coerce that to the first and then increments of five but how do I do that?
    Thanks.
    Pedro

    Hi Pedro,
    The following script should do what you are asking for:
    *set theSourceFolder to choose folder with prompt "Select the source folder."*
    *set theTargetFolder to choose folder with prompt "Select the target folder."*
    *tell application "Finder"*
    *set theFiles to files of theSourceFolder*
    *repeat with k from 5 to (count theFiles) by 5*
    *move item k of theFiles to folder theTargetFolder*
    *end repeat*
    *end tell*
    Message was edited by: Pierre L.

  • Does anyone how to take music from ipod and put it on to my computer?

    does anyone how to take music from ipod and put it on to my computer? i desperatly need to do that so please help me!!!! i will download software if i need to

    If you are using iTunes version 7 or later, then you can transfer purchased iTunes store music from the iPod to an authorized computer by using the "file/transfer purchases from iPod" menu. Note that the maximum of 5 authorized computers applies here.
    For all other non purchased music (your own CDs etc) try this method which works on some Windows PCs.
    Enable your iPod for disk use.
    See: iPod Disk Use.
    Open iTunes and select edit/preferences/advanced/general. Put a check mark in the box marked "copy files to iTunes music folder when adding to library" and also "keep iTunes music folder organized", then click 'ok'.
    Connect the iPod whilst holding down the shift/ctrl keys to prevent any auto sync, and if you see the dialogue window asking if you want to sync to this itunes library, click 'no'.
    Then go to file/add folder, open 'my computer', select your iPod and click 'ok'.
    The music files should transfer to your iTunes.
    If this doesn't work (and it may not because officially it's not supposed to), check out the instructions/suggestions here.
    Music from iPod to computer (using option 2). This a manual method using "hidden folders" and although it works, it can be messy.
    Much easier ways are to use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music and playlists etc from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.

  • How to Takes Active directory backup and Restore in different Hardware

    Hi 
    how to takes Active directory backup and Restore in different Hardware in Windows server 2003 R2 standard Edition.

    You can give a look to that: https://support.microsoft.com/kb/249694/?wa=wsignin1.0
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • How to impl result match percentage and statistics on # of visit of docs

    Can someone please suggest on how to impl result match percentage and statistics on # of visit of docs.
    Can this be achieved without using ultra search?
    For example, by entering 'merge', I would like to see
    result such as
    "Party Merge High Level Design", 100%, # of hits:125.

    Can someone please suggest on how to impl result match percentage and statistics on # of visit of docs.
    Can this be achieved without using ultra search?
    For example, by entering 'merge', I would like to see
    result such as
    "Party Merge High Level Design", 100%, # of hits:125.

  • How can I change the tempo (and the snap grid) of the project without altering the duration of the original audio clips?

    This question is for Logic Express.
    I have many very short audio clips that I recorded into my project.
    I want to adjust the project tempo so that I can use the snap grid to make a beat out of my short audio clips. But when I change the project tempo, it automatically adjusts the lengths of my audio clips.
    So how can I change the tempo (and the snap grid) of the project without altering the original audio clips?

    The reason some files sound funny and others don't is because audio is handled a few different in Garageband depending on it's source (audio your recorded vs Apple Loops vs non Apple Loop pre recorded audio). Each of these have different color regions with different properties.  I just found this thread that might better explain it:
    http://hintsforums.macworld.com/archive/index.php/t-67538.html
    I hope that helps!

  • Good morning, i would like to know how to take pictures from iphoto and put them in a folder on desktop

    Good morning: would like to know how to take pictures from my iphoto and put them in a folder on my desktop

    To take photos from iPhoto and put them onto a folder on Desktop, first create a folder on Desktop. Right-click on Desktop and create a new folder.
    Then, open iPhoto, and you have two ways to export photos:
    1. Select the photos you want to copy to Desktop with Command key (or go to Edit menu > Select All, if you want to copy all photos), and then, drag them to the folder on Desktop.
    2. Select the photos you want to copy to Desktop with Command key, go to File menu > Export, and follow the steps.
    You can choose the one you prefer

  • How to take human task values and store them in DB table

    Hi, I have a workflow and when I assign the task to someone I want to store some info in a database table that I created.
    I have checked the box allow task and routing customization in bpel call backs.
    And under the on Assign message, I put an assign bpel construct and an invoke.
    in the assign construct I am trying to copy some of the elements from my humantasks_globalvariables to certain columns in my database table.
    I have found out you can't copy them directly because the humantasks_globalvariables are of type string and my database columns are anonymous. So I tried using parseEscapedXML(), when I do this I get the error that
    oracle.fabric.common.xml.xpath.XPathFunctionException: parseXML() expects the argument to be either a string or an XML element.
    The humantasks_globalvariable I am using says it's of type string but it gives me this error.
    I am obviously doing something wrong. If anybody know how to take values from a human task and store them in a database table any help would be greatly appreciated.

    In the actual database the column types are varchar2. But when I drag an invoke from the bpel constructs I associate it with by DBadapter partner link and click the button automatically create input variables. It creates an xsd and this is what one of the elements looks like.
    <xs:element name="anyvalue">
        <xs:simpleType>
            <xs:restriction base="xs:string">
                 <xs:maxLength value="20"/>
            </xs:restriction>
        </xs:simpleType>
    </xs:element>When I do an assign and try to assign the values from the humantasks_globalvariables xsd there types look like this.
    task:title string
    and the input variable I automatically generated look like this.
    ns7:anyvalue <anonymous>

  • Problems with my account. How to setup a new one and copy all data in it?

    I've had this Admin account called 'Alex' since my TiBook days. It was on a freshly installed Panther, but for some reason it had a few problems. Just within my own account, that is. My 'Alex' account happened to be the only Admin account; all the other accounts, three in number if I'm not mistaken, were Std accounts.
    Problems I had back then included certain installers not running, or rather starting to bounce and then quitting before doing anything at all. I remember I had to use another account to install Final Cut Express 1.01.
    When I got this new Powerbook I used Migration Assistant when first turning it on, and transfered my home folder using FW cable from the TiBook. Trouble is, the problems I had up to then got transferred, too! For example, now I cannot click on 'Burn' within iDVD5, or the whole thing will collapse (iDVD that is, not the OS!). Also, bought FaxSTF Pro X from Smith Micro, and I can't fax out anything! But, switch to another account on my Powerbook, things are smooth as silk.
    I am contemplating the solution of setting up a new account for me and transferring all my files to that account, then delete my current, problematic one. I want the new account to also be called 'Alex' for short, to have the same long name (my full name, just like my current Admin account). I also would like it if it was possible to copy my Dock configuration, instead of having to re-compose it from scratch. I've got used to using it over the months, and would like to keep it for GUI reasons.
    So, what would be the right order of doing things? Rename my current, bad, account, then create a fresh admin account, then change the ownership and privileges in everything in my home folder and move to the new account, then verify and finally delete my current account? Does all this make sense? Am I setting myself up for some sort of digital tragedy?
    Thanks, people.

    You know, I was thinking if I went ahead and just created a new account, then shipped all my Home folder under the new account and used chown to fix the ownership details, then most likely the problems of my current account would be transferred to the new one.
    How about skipping all .plist files and other preferences? What if I only transferred my actual work documents from all software that I use, plus emails and what have you? Would that tend to minimize the chances of problems re-manifesting themselves in the new environment?

  • How to create a new account and copy all settings?

    I think my main user account is corrupted. So I want to create a new account and copy all of my settings, files etc..and more than likely piecemeal just incase my settings are what is corrupted. That way I can isolate the problem.
    I don't plan to delete the main account until satisfied and I also have my Time Machine backup plus my SuperDuper backup.
    I can/should be able to figure out how to create the new account, but I am very unclear on the best/easiest approach to copy in my iTunes files and settings, applications(is this even an issue), address book, email, etc? I should be able to find most everything underneath my home account folders but what else am I missing here? I don't want to find out the hard way.
    Please share some advice or perhaps a link/FAQ on how to approach.
    Thanks in advance.
    --Mickey

    use this [link|http://discussions.apple.com/message.jspa?messageID=6185507].

  • How to search for a file and copy it to somewhere else in terminal

    So basically how can I search for a file on my computer named "testingtesting.txt" and copy it to my desktop using terminal? I have very little experience in terminal, so I was going to try and use the mdfind command, then store that output as a variable, and use that variable as the source for the cp command, but I feel like there is probably a much simpler method. So basically how could I find a file named "testingtesting.txt", copy it, and paste it to my desktop using terminal.

    Is there any particular reason that you must use Terminal?
    You could just download the free EasyFind from the App Store and find the file quickly. Do whatever you wish with it.
    Good luck,
    Clinton

  • How do I protect File (read and copy only)

    I have created a photo file that I want my kids to be able to see and copy( make an imovie or slideshow with)but not write onto. This way as I update the file with more pictures I can copy the new items over easily without creating copies of pictures. The file size is currently 250GB and to re-write the entire folder each time takes 8 hours and it might only take minutes if it only has to write the new pics. My hope is to be able to drag the file onto their drive and then for the system to ask if I want to replace or ignore existing files and just write the new ones. I want to be the only one that has the capability to do this. Help

    If you control their Apple menu -> System Preferences -> Accounts to have parental controls, you can keep that file inside a read only folder that you create for them to access. That's true for nearly every version of Mac OS X.
    If you are able to boot into Mac OS 9 on any of your machines, you will have to setup those accounts to boot via Apple -> Control Panels -> Users and Groups to have read only folders.
    Secure your account with a password that no one can guess. Birthdays, names, foreign language words are not good passwords. A mixture of consonants, numbers, and symbols are best, and at a minimum 8 characters.

  • Take a workflow variable and copy it to the user's clipboard

    I'm looking for the means to have a workflow take a variable and copy it to the user's clipboard. Is this possible?
    Cheers,
    Mark
    SharePoint 2013 Online
    Learning SharePoint

    Hi Mark,
    From your description, you have used workflow to copy the URL into a column.
    Then I recommend to use JSLINK to add a button to the list view and copy the URL from the column to the clipboard when clicking the button.
    Here is the code for the js file and please use it in Internet Explorer(the code only works in IE):
    (function () {
    var overrideCtx = {};
    overrideCtx.Templates = {};
    overrideCtx.Templates.Fields = {
    'URLColumn': { 'View' : CopyButton }//change the column to the internal name of the column which you copy the URL to.
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
    function CopyButton(ctx){
    var value =ctx.CurrentItem["URLColumn"]
    var html="";
    if(value!="")
    {var html= "<div><span id='copytext'>"+value+"</span><button type='button' onclick='copy();'>Copy</button></div>";
    return html;
    function copy(ctx){
    if (window.clipboardData && clipboardData.setData)
    var s=document.getElementById("copytext").innerText;
    clipboardData.setData("Text", s);
    After writing the js file, you need to upload the file to SharePoint and then refer to it in the list view web part.
    http://www.learningsharepoint.com/2012/08/03/sharepoint-2013-using-js-link-to-add-javascript-to-listviewdataview-webpart/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to take waveform chart data and put it into an array

    Hello all,
    I am new to programming in Labview, and am learning basically by watching youtube video and such. My question is how to take a set of random data that I have written code for and linked to a waveform chart, and put the data into an array so I can calculate the mean of the data set. If there is an easier way to calculate the mean of the data set I am all ears, but I need to be able to display the mean on the front panel each time the code is run. I have attached a file of my code.
    Thanks
    Attachments:
    CA1.vi ‏11 KB

    Welcome.
    If you have not done so, look at the on-line tutorials on Getting Started with LabVIEW on the NI web site.
    A chart has a property known as History which retains some previous values.  You can get access to the the History property by popping up on the block diagram terminal of the chart and selecting Create >> Property Node. Note that the history length can be set via a pop up menu.  The default length is 1024.
    Other comments: When you know the number of iteration in advance you should use a for loop rather than the while loop.
    You can also use an autoindexing tunnel at the boundary of the loop to create an array. It only contains the values from the current run, unlike the chart history which can retain values between runs (as long as the VI remains in memory). Watch the two Mean indicators as you run this VI several times.
    The error wire is to assure that the history property node runs after the loop.  Disconnect the wire and watch the Mean and Mean 2 indicators carefully.
    The Wait is to slow things down a bit so that you can see what is happening.
    Lynn
    Attachments:
    CA1.2.vi ‏11 KB

  • How do I sync so that album art work in one library is copied over to another via home-sharing? Most of the artwork has been scanned and added by me.

    I have three computers, each with its own iTunes Library, but if I add material to one, every few days I make sure that it's copied over to the others via homesharing.  However, some of the metadata does not transfer, specifically the album art work.  So on one library, call it my Home Library, everything is nice and tidy, with album artwork where it should be.  On the other two, all the albums I've painstakingly made sure are complete on the home library are missing the art work.
    Any thoughts?  Tune Ranger and other iTunes maintenance apps don't seem to do the job, either. Coverscout, PowerTunes and Song Sargent also fail this task.

    My understanding it iTunes handles artwork several ways.  First, iTunes keeps a copy of all artwork in its artwork folder.  Second, artwork can optionally be embedded in a media file.  You can, for example, have an album where no artwork is actually in the files but all use a reference copy in the artwork folder.  Even if a file has artwork embedded it may still use the version in the artwork folder.
    Embedded artwork travels with the file when you copy the file.
    I am hazy as to when exactly iTunes will embed artwork and when it won't.  I believe, for example, if you use iTunes to fetch artwork it will not embed it, it will just place a copy in the artwork folder.  Then too I never use iTunes to fetch artwork and I usually end up with artwork embedded in a file or two per LP (each embedded copy uses up more disk space).  Now, I still use iTunes 7.5 and new versions may not behave exactly the same.  If it was my version and I added artwork to a file it would embed it and it would transfer.  It sounds like your artwork isn't embedded even if you are adding it the same way I would (I drag mine to the little arwork display box in the bottom left corner of my window, which apparently has vanished completely in iTunes 11).
    You could try this for a file:
    Script for embedding artwork - http://dougscripts.com/itunes/scripts/ss.php?sp=embedart
    Just remember embedding artwork adds to each file size, so if you have 1000 files and you add 2 MB of high quality scans to each track you are taking up 2 GB more of drive space.

Maybe you are looking for

  • Turned Off iPod Touch 1st Gen During Restore. Did I kill it?

    My 1st Generation iPod Touch wasn't being detected by iTunes so I chose the reset option that erases all data. While it was restoring, I thought it froze because the white progress bar under the apple stopped midway and I turned the iPod off. Now whe

  • ITunes comes up with an error message

    When I go to start iTunes a popup comes up, it says ' iTunes has encountered a problem and needs to close'. It gives the option to send an error report to Windows. What can i do? Someone please help. I've tried reinstalling iTunes and turning off nor

  • Framebuffer and display resolution

    hi, I have an onboard graphiccard with an Intel 945GME chipset. My display allows a resolution of 1024x600 pixel. But how do I find out which is the correct value for 1024x600 to setup the correct vga value in my /boot/grub/menu.lst to activate the f

  • Invalid heap space condition detected.  Internal dump identifier (ID)

    While the Working threads make JDBC CAll to the dtabase ... i'm getting this error in the JVM log ...can neone tell me what could be the reason

  • SEQUENCE issuing numbers more than once?

    This is all on Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64)  Oct 19 2012 13:38:57  Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor) Running on Server 2008 Standar