Is it possible to reference one cell from the value of another?

Is it possible to reference one cell from the value of another e.g.
value of b1 = value of c(value of a1)
So if a1 = 3 then b1 = c3, if a1 = 5 then b1 = c5.

Excellent!
Thanks Wayne. Just saved me many hours and a headache.
Works like a dream.
Thank you for your succinct (and accurate) answer.
Mark

Similar Messages

  • Return max value from one column from similar values in another

    Hi folks. I've got a heap of temperature data to analyse and am looking for an easy way to extract a maximum internal temperature from a group of readings with the same external temperature. E.g. When the external temperature is 25.0 there are say 20 different internal temperature values that correspond with the different dates and times that this external temperature occurs. I'm looking for a formula I can use in a separate table with the external temperatures in a header column that will refer to the header column and extract the data from the original table. Any help appreciated! E.g. below...
    Internal (°C)
    Loc 4-Ambient
    Index
    Date
    TimeValue
    Time
    External (°C)
    22.7
    1.70
    465
    11/10/12
    0.33
    8:00:00 am
    21
    22.7
    0.90
    466
    11/10/12
    0.35
    8:30:00 am
    21.8
    24.5
    2.10
    417
    11/9/12
    0.33
    8:00:00 am
    22.4
    23.4
    1.00
    513
    11/11/12
    0.33
    8:00:00 am
    22.4
    22.9
    0.20
    467
    11/10/12
    0.38
    9:00:00 am
    22.7
    25.8
    2.90
    370
    11/8/12
    0.35
    8:30:00 am
    22.9
    25.7
    2.80
    371
    11/8/12
    0.38
    9:00:00 am
    22.9
    25.7
    2.80
    372
    11/8/12
    0.40
    9:30:00 am
    22.9
    25.6
    2.70
    373
    11/8/12
    0.42
    10:00:00 am
    22.9
    24.5
    1.60
    418
    11/9/12
    0.35
    8:30:00 am
    22.9
    25.6
    2.50
    369
    11/8/12
    0.33
    8:00:00 am
    23.1
    max temp
    21.0
    21.1
    21.2
    21.3
    21.4
    21.5

    Hi Barry,
    thanks for the response. Sorry, my example was not exactly clear. I'll take out the superfluous data and try and clarify my problem further. Based on the table below, I have sorted the data based on ascending external temperature (At these low external temperatures there are not so many data points, but when we get into the late 20s and 30s there can be hundreds of corresponding points). What I want to create is a separate table that I can graph, with the X axis showing the external temperature and the Y axis showing the maximum internal temperature that corresponds with each 0.1 degree increment of the external temperature.
    external
    internal
    16.5
    26.7
    16.5
    26.4
    17
    26.6
    17.1
    26.8
    17.2
    26.9
    17.3
    27.3
    17.3
    26.4
    17.5
    26.7
    17.6
    28.1
    17.7
    27.4
    17.8
    26.7
    17.9
    27.4
    18
    28.1
    18
    27.4
    18.1
    27
    18.1
    26.9
    18.1
    26.5
    18.1
    28
    18.2
    28.1
    18.2
    27.2
    18.3
    28.1
    18.4
    27.5
    18.4
    27.3
    So my second table would just be two columns (I had 3 in the first example because I am doing a before and after painting the roof white comparison but I'm simplifying now) with my external temperature scale in column A in 0.1 degree increments. I am looking for a formula for column B that will give me the maximum internal temperature from my range of temperatures in the first table.
    18.0
    18.1
    18.2
    18.3
    18.4
    18.5
    18.6
    18.7
    etcetera. The max for 18.1, for example, would turn out 28 based on the 4 corresponding data points in the first table.
    Ideally I would like a formula using the MAX equation because I'm hoping that I can do a similar table for getting the average internal temperature for each of the external temperature increments too, but I didn't want to overcomplicate matters.
    Cheers,
    Neewok

  • Update a Temp table from the values of another table (Best Approach)

    Hi 
    Can anyone help me out to find a solution for the requirement mentioned below.
    I have a temp table like I have mentioned below. Column Period Name will have values like "Current Year", Two Years Before", Three Years Before" , YTD etc.
    Table: Period Count :
    DECLARE @PeriodCount TABLE(RowID INT IDENTITY(1,1),InterventionID INT,Name Nvarchar(500),StartDate DateTime,EndDate DateTime,PeriodName Nvarchar(100),RowDisplayOrder INT)
    In my second temp table(@Report) I have 30 unique Rownames. Now I need to update the figures of the columns like "OneYear Before", Two Years Before", Three Years Before " and all with the matching "InterventionID from the above table.
    ie: Update the figures of the below table (TwoYearsBefore,Three YearsBefore ) and all with the matching interventionID from the first table.
    Note: Field RowName is common in both the tables.
    Table :@Report
    DECLARE @Report TABLE(
    SectionDisplayOrder INT,
    SectionName NVARCHAR(MAX),
    SectionCode NVARCHAR(MAX),
    SectionPeriod NVarchar(Max),
    RowName NVARCHAR(MAX),
    DisplayFormat NVARCHAR(50),
    Uom NVARCHAR(50),
    IsBold BIT,
    Padding INT,
    IsPositiveVariance BIT,
    ThreeYearsBefore FLOAT,
    TwoYearsBefore FLOAT,
    OneYearBefore FLOAT,
    TwelveMonths FLOAT,
    [Target] FLOAT,
    Ytd FLOAT,
    Month1 FLOAT,
    Month2 FLOAT,
    Month3 FLOAT,
    Month4 FLOAT,
    Month5 FLOAT,
    Month6 FLOAT,
    Month7 FLOAT,
    Month8 FLOAT,
    Month9 FLOAT,
    Month10 FLOAT,
    Month11 FLOAT,
    Month12 FLOAT
    INSERT INTO @Report
    select
    DISTINCT
    NULL,
    ' Maintenance',
    'fractoryMaintenance',
    NULL,
    P.Name,
    'N0',
    'no',
    0,
    0,
    0,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL
    from @PeriodCount P
    Thanks in advance.
    pep

    RowName
    ThreeYearsBefore
    TwoYearsBefore
    OneYearBefore
    TwelveMonths
    Target
    Ytd
    Month1
    Month2
    Month3
    Cross Over - Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Floor Tiles - Mechanical Damages
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Floor Tiles - Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Floor Tiles - Replaced
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Cleaned
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Mechanical Damages
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Replaced
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Straightening
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall - Wool Stuffed
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Burner Block - Replaced
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Top Blocks - Cover Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Top Blocks - Mechanical Damages
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Top Blocks - Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Top Blocks - Replaced
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Flue Wall Top Blocks - Wool Stuffed
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Head Wall - Cleaned
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Head Wall - Cover Repaired
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Head Wall - Full Sealed
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Head Wall - Replaced
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    Head Wall - Wool Stuffed
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL

  • Pop-up menu in one column determines the value in another.  How?

    I'm setting up a company report, and one column has a pop-up menu.  I want the cell in another column to automatically enter a certain value depending on which option is selected in that pop-up menu.  How is that done?

    m,
    You can use any of the functions that look for a match in one column and pull data from another. As a class, they're called Lookup functions. I wouldn't plan on having your design survive an export to Excel, so you should consider who will be using your work and what platform they will have available.
    Jerry

  • Is it posssible to lunch one application from the client system using JSP

    Is it possible to Lunch one application from the client system using JSP or Servlet .If it is possible then how can we do that ?
    Thanks in advance
    Sil

    If its a java application - yes. You can use jnlp and web start.
    ram.

  • How do one can upload a file (a PDF, doc etc) while filling a web form through chrome or safari? It is possible to upload a photo from the camera role, but other file types can not be uploaded.

    How do one can upload a file (a PDF, doc etc) while filling a web form through chrome or safari? It is possible to upload a photo from the camera role, but other file types can not be uploaded.

    For a variety of reasons, mostly related to security, the iOS operating system limits what can be done with respect to file uploading and downloading. But whenever you encounter a limitation like this always think, "There must be an app for this."
    Check the apps James Ward suggests.

  • Formula to deduct one cell from another cell - simple equation - cant find the answer, formula to deduct one cell from another cell - simple equation - cant find the answer

    Could anyone tell me how to deduct one cell from another cell in the numbers application.
    Thank you!

    to subtract one cell from another you enter a formula in a cell by:
    1) click the cell where you want the result to be
    2) click the cell that contains on of the operands
    3) type the minus sign ("-")
    4) click the other cell with the other operand
    e.g.  if cell A1 contains 5, cell B1, contains 2 and you want the difference of those two cells to be in cell C1....
    you would click cell C1 and then type: "=A1-B1" then type the enter key OR
    click cell C1 and then type "=", then click cell A1, then type "-", then click cell B1, then type the "enter" key

  • Is it possible to move my iTunes from the old laptop to the new one (including all the music files and playlists) without having to start all over again with a blank iTunes?

    Is it possible to move my iTunes from the old laptop to the new one (including all the music files and playlists) without having to start all over again with a blank iTunes?

    yes
    You will need to copy the whole iTunes folder which is in your user profile on the old computer in Music folder.
    Before you do it make sure iTunes are updates on the old computer and it works without any problems.
    This will copy all your media, music, movies (provided you did not change the default location).
    After the migration you will need to sing in to Apple store again with your Apple ID
    and also authorize your new computer (both done from the tom menu bar in Store.
    Once you are done please deauthorize your old computer (the same menu path) if you are not planning to use it anymore.
    Any problems post here.

  • Is it possible to restart a download from the amount downloaded previously?

    Is it possible to restart a download from the amount downloaded previously?
    When I download some lectures from iTunes U, sometimes the link breaks and the download gets interupted.Then when the download is resumed it starts from 0 KB and not from the KB amount that was downloaded when the download was interupted.Is there a way to resume the download from the point it was interrupted?

    Well I'm using 9.0.3.1.5 and I STILL have this same problem.
    Not sure if location is a factor, but I'm a US resident with a US iTunes account but I spend most of my time in Asia and I know a LOT of folks in India, UAE, etc with it. Everything else in iTunes works perfectly fine, except resuming non-purchased downloads.
    On Apple Support I could only find a solution related to Purchased downloads, but not individual unsubscribed podcasts you clicked GET on or free iTunesU content. These still go back to zero with no option to resume only restart.
    I mean, every quality download manager for your web browser gives you a consistent experience in resuming almost any download except very few servers on the Internet with specific policies to not allow resumes. If there is no solution just silence, either this is one of those mysterious come-and-go bugs that are hard to replicate or maybe iTunes is conserving bandwidth by discouraging resumes of free content it doesn't make money on. Especially 100MB+ files from folks in places with reliable but slower "3rd world" connections. So I would with a half bitten lip throw an answer your question as NO, it is not possible.
    I do hope someone who thinks they have a solution steps in to say Yes, it would make a lot of people very happy.

  • Its possible to stream one video at the same time to three appletv2?

    Its possible to stream one video at the same time to three appletv2?

    Welcome to the Apple Community.
    You can't stream a movie to more than one device at a time from iTunes. You can however stream the same (or indeed a different) movie from multiple Apple TVs although they won't necessarily be in sync.

  • Is it possible to transfer my musics from an iPod to another ?

    Is it possible to transfer my musics from an iPod to another ?

    Not directly, no. Where did the music originate?
    You might find one of the utilities listed here useful:
    Recovering your iTunes library from your iPod or iOS device: Read turingtest2's User Tip:
    https://discussions.apple.com/docs/DOC-3991

  • How to populate a filter field in one page with the value from other page

    Take the classic report with form application.
    on page 1 (report) I have a filter (dbname) for the records that will appear in the report. Say that, I enter "ap02" in the filter and all records where dbname starts with "ap02" will display. It works ok.
    Then I click on "create" button and page 2 appears. I enter all fields except the dbname. This field is generated, at "pre-insert trigger on the table".
    What I want is when I press the button "create" on page 2 to pass the value of the generated dbname field into the filter in page 1 so when that page refreshes I will have only one record on the report page (1). I understand that the dbname at the page 2 level still empty because it is generated by the trigger. How do I have access to that info to populate the filter.
    Thanks for your assistance

    Joe - Work backwards from the value generated during the execution of the trigger. You have the value there so you could save it into a package variable right then (create a package with a variable and assign the value to the variable). Then create a process on the page (after the DML process) to assign the value of your package variable to a page item. Then in the branch back to page 1, pass the item. (Or without messing with the branch, the process could simply assign the package variable directly the the page 1 item -- :P1_ITEM := my_package.my_var; ).
    An alternative would be to use the "returning into" feature of DML to capture the PK of the created record into an item. Then the next page process could use the PK to fetch the new row and get the dbname value for passing to page 1.
    Another option would be to update session state directly in the trigger.
    Scott

  • Is there a possibility to open raw files from the Nikon D750 in photoshop elements 11?

    Is there a possibility to open raw files from the Nikon D750 in photoshop elements 11? I allready tried to install camera raw 8.7.1 but it doesn't work.

    Yes, I see:
    Letzte Aktualisierung
    16.04.2012
    The link I gave is listed in the faqs of this forum.
    Photoshop Elements FAQ List
    mfG
    Michel

  • Is it possible to retrieve deleted items from the Pages App please?

    IIs it possible to retrieve deleted items from the Pages App? Thanks

    From within the Pages app, no. If you have an iTunes or iCloud backup that would have contained the file, and you are backing up Pages, it could be received via a restore using that backup (this would wipe out any newer data however).

  • Is it possible to delete a relationship from the BP ?

    Hello experts,
    I'd would like to replace a function partner SH (having the same number as the DO) by another  from R3 to CRM5.
    At the begining i have in R3 this partner
    AG 3901007
    RE 3901007
    RG 3901007
    WE 3901007
    In R3 by the transaction VD02, I replace the partner SH by another
    After the modify i have in R3.
    AG 3901007
    RE 3901007
    RG 3901007
    WE 5000000
    When the replication is done in CRM using BDOC, i can see, by the transaction BP
    the new ship to party partner(5000000) .
    The trouble is :
    When customer access to ISA (standard version) to order product, he can select the partner 3901007 as shipping adress.
    By ISA, he should have the partner 5000000 only.
    Is it standard or is it a sap trouble ?
    Is it possible to delete a relationship from the BP ?
    I don't want to delete the BP partner, i just want to delete the relationship when then BDOC arrive in CRM.
    i have found the oss note 596334 497146 757955 too but it doesn't bring me a solution.
    Best regards
    Christophe

    Hello
    When you delete a Partner Function in R/3 the corresponding relationshipdoesn't get deleted in CRM. This is standard SAP behavior and not a
    bug. Reason for this behavior has been explained in Note 490454.
    You can change this behavior by implementing Note 497146. Also check
    the note 682427 which will help you in clearing old data.

Maybe you are looking for