Formula to paste data that exists beside a pop-up menu.

I'm using a pop-up menu that I share between two tables, Table-A and Table-B. (I copy the original pop-up menu in Table-A to Table-B)
In Table-B want to populate the cell beside the value I select from the pop-up menu with the value of the cell beside the pop-up selection in Table-A
How can that be done?

Hi Dean,
There are several ways to do this. LOOKUP() and its variants VLOOKUP() and HLOOKUP() are made for this. LOOKUP() will settle for a close match which is great in some cases, deadly in others and in your case irrelevant since you are using popups.
quinn

Similar Messages

  • How to create a variance on data that exists iIn only one database column

    How to create a variance on data that exists iIn only one database column?
    I'm trying to create a calculation to show the difference between the budgets for two different years in a Discoverer crosstab query.
    I'm using the lag function to repeat the value of a column for the current year and the year before.

    Lag and lead seems to be the only choice and they work excellent. Checkout the new 10g Database features. There is new SQL modal clause which might give additional and powerful analytics but in this case lag and lead should be sufficient.
    regards
    http://www.infocaptor.com/workbook-dump.php

  • Can't display data that exist in cupe

    Hi All,
    I get a problem which is thar even i entered data in the cube i cant display with charecteristics. When i go to bw and display data if i say select charecteristics i can see any data but if i dont select charecteristics i can display data. Also when i enter data and sen data it say succesful but i loose data on view. Have anyone get any problem like that thanks for your interest.
    Kasim

    Hi,
    The code you sent appears to be the Audio Talkthrough example with several modifications. Here's the first thing I noticed that appears to be incorrect: You're using the BF AD1871 Wait on Data Ready Flag VI to fill the sub-buffer, then you go into a loop and get the contents of that buffer 256 times. You should be filling the buffer each time before you get the buffer instead of only filling it once. You also aren't resetting the data ready flag by using the BF AD1871 Clear Data Ready Flag VI.
    Message Edited by Michael P on 07-28-2006 09:55 AM
    Michael P
    National Instruments

  • How can I get alerts from SharePoint based on a date that exists in a list?

    I have a list that contains renewal records.  One of the fields in each record is "Renewal Date".  I would like to have SharePoint send an alert when it is 1 month prior to that date. 
    Can anyone help me do so?
    Chas Roberts

    This answer details a few different ways to do this - workflow, scheduled jobs, open source and commercial add-ons.
    StackOverflow - Dated
    reminders in sharepoint calendars
    http://stackoverflow.com/questions/529045/dated-reminders-in-sharepoint-calendars
    Regards
    Ryan
    Pentalogic Technology - Web Parts for Microsoft SharePoint
    www.pentalogic.net

  • I have a hard disk drive with data that i want to back up onto another hard disk drive. I tried just copy and it won't let me paste it in the new drive. I have also tried to drag the files across and they won't go across. Does anyone know how to do this?

    I have an external hard disk drive with data that I want to back up onto another extrnal hard disk drive. I have tried to copy and paste but this wont give me a paste option. I have also tried to click and drag but it wont let me either. I have reformatted the external hard drive to accept both mac and pc files and this did not make any difference. Can anyone help me with this?

    How did you reformat the drive? If you formatted it as NTFS, your Mac will not be able to write files to it unless you use a small application such as Paragon's.
    Please reply as to how you formatted the drive.
    Clinton

  • Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Hello danna,
    please have a look there as a first step: http://helpx.adobe.com/acrobat-com/formscentral/topics.html  >>> Formula syntax for built-in functions  >>> http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
    Hans-Günter

  • Can a trendline in Numbers be extended to see predictions without adding data that does not exist?

    The spread sheet that I'm working with adds daily data over a 6 month timeframe. The trendline stops at the newest data point. I would like to know what to expect in 6 months so I can make adjustments to adjust progress. I would like to do this without adding false data that I don't have yet.
    Thanks

    If you notice in my first response... the top screenshot shows a plot with a trend line that shows the equation.  I used the slope and offset in the formula that extend the "prediction"
    you could use the forecast() or linest() function to create this prediction with out the trend line.
    Here is another example:
    I entered actual (but made up) data in columns A and B
    then I calculate the slope and intercept of that data in column F
    F3=INDEX(LINEST(B2:B6,A2:A6,TRUE,TRUE), 1)
    F4=INDEX(LINEST(B2:B6,A2:A6,TRUE,TRUE), 2)
    now in columns C and D I enter X values and calculate predicted Y values using the slope and intercepts:
    D2=$F$3×C2+$F$4
    select D2 and fill down as needed

  • How do I autofill left to right (or copy/paste) from data that is up and down in another table?

    I have source data that is in a table as a column, and I would like to have it autofilled (simply copy/paste if need be) into a row in a separate table.  Is there an easy way to do this without doing each cell individually?

    Question asked and answered many times.
    What you ask for is named "Transpose a row" or "Transpose a column".
    Yvan KOENIG (VALLAURIS, France) lundi 29 août 2011 22:48:45
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Start Routine - Do not load data that doesnt exist in ODS

    Hello Gurus!
    I am loading between two cubes. I only want to load products that exist in a seperate ods.
    Can someone help me out with the code for this?
    NB I am using 3.5

    data declaration :
    $$ begin of global - insert your declaration only below this line  -
        DATA : itab TYPE TABLE OF /bic/aXXXXXX00.
        DATA : w_itab LIKE LINE OF itab.
        data : v_ind type i.
    coding :
    $$ begin of routine - insert your code only below this line        -
        ... "insert your code here
    *--  fill table "MONITOR" with values of structure "MONITOR_REC"
    *-   to make monitor entries
        ... "to cancel the update process
       raise exception type CX_RSROUT_ABORT.
    SELECT *
    FROM /bic/aXXXXXX00
    INTO TABLE itab
    FOR ALL ENTRIES IN SOURCE_PACKAGE
    WHERE field1 EQ SOURCE_PACKAGE-field1.
    LOOP AT SOURCE_PACKAGE ASSIGNING <source_fields>.
    v_ind = sy-tabix.
    READ TABLE itab INTO w_itab
    WITH KEY field1    = <source_fields>-field1.
    if sy-subrc ne 0.
    delete itab index v_ind.
    endif.
    endloop.

  • 0SD_C03 cube contains data that does not exist  in PSA

    Hi,
    We have a problem with data difference in cube and PSA. Firstly we deleted PSA extactly then extracted data from r3 to PSA. PSA has 2 records now. Then we extracted data to cube (0SD_C03) via DTP (using 2LIS_13_VDITM transformation rules). However, the cube contains approximately 300 000 data. Cube contains many records that does not exist in PSA.
    Where these data come from?
    thanks in advance,

    Hi,
    In your PSA overview, did you change the date that limits the PSA packages showing?
    (middle top of screen) and click refresh?
    it might be that you only have deleted the PSA from a certain date onwards.
    Success,
    Udo

  • Updating record that exist in master data target but not master data sourc

    HI,
    I have PLANT key value "0004" that exist in my master data target ZPLANT, but this value has never sended by my source system, it was added only when I loaded my Infoprovider.
    My problem is that  this key value "0004" haven't text, and I would like put automatiquely the text of another value '0005' for this value '0004'.
    I'm in BI7 for information.
    Do you have any idea please? ABAP, Start routine or End routine?
    Andcould you give me please the ABAP code to do that?
    Radj.

    Thank you for your answer, but the source system doesn't contain the value '0004'.
    Can'I add this value while loading ZPLANT master data from source system?
    If yes, How can'I do it, and How can I maitain (automatiquely not manually) the text of '0004' key value?
    PS:
    The text of '0004' key value is the same as the text of '0005' key value'.
    Thank you.
    Radj.
    Edited by: Radjech Radjech on Jul 26, 2009 8:53 AM

  • Basic BI questions of calculating formulas from raw data on 15-min and 1-hr intervals?

    I'm new to BI and I'm working on a project that (I believe) can help me gain experience with this technology. The formula I'm working on now is really the simplest one.
    We have 15-minute data that has tons of counters. I'm currently storing in a table called [Counter15MinCityDataRaw], like so:
    Id City Date Hour Minute KpiValue Counters InsertDate
    108823 Miami 20140930 9 0 100.00 Auto 2014-09-30 12:17:07.580
    108824 NYC 20140930 9 0 0.50 Added 2014-09-30 12:17:07.580
    108825 Vegas 20140930 9 0 12.00 Att 2014-09-30 12:17:07.580
    108826 Miami 20140930 9 0 40.00 Man 2014-09-30 12:17:07.580
    108823 Miami 20140930 9 15 100.00 Auto 2014-09-30 12:17:07.580
    108824 NYC 20140930 9 15 0.50 Added 2014-09-30 12:17:07.580
    108825 Vegas 20140930 9 15 12.00 Att 2014-09-30 12:17:07.580
    108826 Miami 20140930 9 15 40.00 Man 2014-09-30 12:17:07.580
    This is the raw data. The first formula I'll be working on is [TotalPopulation], that looks like this: [TotalPopulation] = (Q + (Auto+Man))
    / 400. Q equals the Number of quarters being processed (ie. Q =
    1 for 15-minute interval, Q = 4 for 1-hr interval)
    So my intial requirements is to create a report that displays the [TotalPopulation] for each City in 15-min and 1-hr intervals.
    So I already created both [DimDate] and [DimCity] tables, although I don't think they're going to help when I calculate the 15-minute intervals and the 1-hr intervals. Also, can I use the raw data as
    is for the fact table, or would I need to group the data by city and counter (in
    this case Auto and Man) into a new fact
    table?
    So my question is: do I need a dimension table for the 15-minute intervals and 1-hour intervals? How would my Fact table look like? Would I also need a dim table for the Q variable?

    If i understand it correct you can create one more dimension as DimQuarter, which will have members 15 Min interval, 30 Min interval, 45 min interval, 1 hour interval. 
    The next step is to add a column on top of Raw Data for Quarter surrogate key along with existing dimensions.
    Hope this will get you started.
    Be the change you want.

  • APO BW datasouce not displaying past data

    Hi APO Experts,
    we have few data sources in APO system from which we are extracting data into BW.
    We are facing a peculiar problem :
    If you run the datasource for period 01.2009 to 08.2009, it displays no data.
    However, if you give the calmonth period as 01.2009 to 09.2009, it displays data even for past periods that is prior to 09.2009.
    This implies that data does exist for period 01.2008 to 08.2009.
    Is it a mandatory selection criteria that the higher date range interval should be greater than or equal to current month.
    If yes, where is this setting maintained.
    Your earliest help will be highly appreicated.
    Regards

    Hi Nitya,
                 It is not mandatory that date interval should be greater than the current date.
    You should check the time series that has been initialized or not.
    Some times the previous period will be locked automatically based on custom settings.
    So you need to check with those settings as well.
    But you can process any data at any time.
    Regards,
    Santosh

  • Stock as on past dates

    Hi all,
    I have a requirement to audit stock differences that had happened few months back between SAP and BI.
    The stock in BI has a cumulative figure of all stock categories viz. unrestricted, in transit, blocked and QI.
    In SAP, I can get the unrestricted stock on a particular day using MB5B but I don't know how to find the blocked stock/QI stock/in-transit stock on a past date say as on 15/Jan/2009.
    Could you please help me out?
    Thanks
    Rana

    Hi,
    MB5OA doesn't serve my purpose. I need to find what was the stock break-up for all the stock categories (blocked, UR, QI, In-transit) for a material on a past date. For example, I need to know what was the stock of material ABC in QI, in Blocked and in unrestricted stock on 15th of Jan 2009.
    Could you please help me?
    Thanks,
    Rana.

  • Is there a way to create a reminder from a date that appears in an email?

    Is there a way to create a reminder from a date that appears in an email that was sent to me? I know that when a date is entered into an email I can create an event on my calendar for it, but is there a way I can have it be a reminder instead?
    Thank you

    Here is a method for extracting a still from iMovie 09.
    Are you working in iMovie and realize that certain frames in the movie would be perfect as photographs? Here is how to extract them...
    *To get a still frame from an Event*, right-click on the frame and select "Add Still Frame to Project". The still will be added to the end of the current project. Right click on the still frame in the project and select "Reveal in Finder". You will see a jpeg file that is highlighted. Drag this jpeg file in the finder to the iPhoto icon on your dock.
    *If you want a still from a project*, rather than an event, the process is similar, except you right-click on the frame and select "Add Freeze Frame", and it adds the freeze frame at the end of the clip rather than at the end of the project. Right-click/reveal in Finder, drag JPEG to iPhoto icon in dock.
    *If you are not using iPhoto*, and just want to save to your desktop, click Reveal in Finder as above, then COPY, then PASTE to desktop.
    Hint: If you do not want to clutter up your iMovie Project with stills at the end that you would have to go back and delete, then create a separate iMovie Project just for your stills, and follow the instructions for capturing stills from an Event.
    Note: If you do not have a right mouse button, then control-click will work instead of right-click.

Maybe you are looking for