F4 key as an "absolute" function key in excel

Can anyone help. I need my F4 key to be the absolute function in excel. Not working! I have a new imac 3.06. this key board has no F key functions.
Help!

(I think it's quicker just to type the "$" myself)
Me too.  Or, if the formula editor defeats my intent as I type, click the triangle and check the Preserve Row and/or Preserve Column boxes.
SG

Similar Messages

  • Matching Primary key from Excel to DB Column before import

    Hello Experts, 
    I am trying to achieve the task related with updates into my destination table via store procedure using dynamic sql. Basically I am importing the
    excel file into sql server.
    For further step, I want to update only the records that do not exist already in the table with reference to primary key. For this the user will provide
    as an input for procedure the column (or columns) that compose the primary key in excel.
    Example of EXEC command to run the store Procedure
    EXEC
    [ImportExcelFile_Error_Handling]
    'D:\test\test.xlsx','sheet1','testDB',
    'create','[Test Column1]’
    So in this case the [Test Column1] from excel contains now my Primary Key and if I execute my procedure then code should check the values of the
    [Test Column1] in the existing table in database, against the
    [Test Column1]
    in database.  
    If [Test Column1]
    value match with db
    [Test Column1]
    then skip rows and if not match then insert row entry.
    Below is my code, which needs to be update.
    if
    @TypeOfUpdate='Update'
    Begin
    declare
    @PrimaryLeyColumn NVARCHAR(max)
    set
    @PrimaryLeyColumn=''
    exec('Insert into ['
    + @DestinationTable
    + '] select * from openrowset(''Microsoft.ACE.OLEDB.12.0'', ''Excel 12.0;HDR=YES;IMEX=1;Database='
    + @TABLENAME
    + ''', ' +
    ''' select * from '+@SourceSheet
    + ''')')
    end
     thanks in advance.
    Looking for support.
    SharePoint_Consultant_EMEA

    Hello,
    Here is my complete code:
    --------------------Declaring variables------------------------------
    CREATE
    PROCEDURE [dbo].[ImportExcelFile_Update_Error_Handling]     
    (@TABLENAME
    varchar(1000)
    ,@SourceSheet
    varchar (100)
    ,@DestinationTable
    varchar (100)
    ,@TypeOfUpdate
    varchar (100)
    ,@PrimaryLeyColumn
    VARCHAR(255))
    as
    declare
    @retval int
    --Remaing Value
    EXEC
    master..xp_fileexist
    @TABLENAME,
    @retval output
    -- check if file exists
    if
    @retval = 0
    begin
    print 'file does not exists.'
    return
    end
    if
    @SourceSheet is
    null or @SourceSheet
    = ''
    set @SourceSheet
    = '[Sheet1$]' -- assume that the Sheet name on excel file is the default name
    else
    set @SourceSheet
    = '[' +
    ltrim(rtrim(@SourceSheet))
    + '$]'
    if
    @DestinationTable is
    null or
    @DestinationTable =
    set @DestinationTable
    = substring(@SourceSheet, 2,
    len(@SourceSheet)
    - 3)
    + convert(varchar,
    getdate(), 126)
    if
    @TypeOfUpdate='Update'
    Begin
    Begin
    try
    --if @PrimaryLeyColumn =''
    set
    @PrimaryLeyColumn =
    '[]'--here i think need to add the value or updates
    exec('Insert into ['
    + @DestinationTable
    + '] select * from openrowset(''Microsoft.ACE.OLEDB.12.0'', ''Excel 12.0;HDR=YES;IMEX=1;Database='
    + @TABLENAME
    + ''', ' +
    ''' select * from '+@SourceSheet
    + ''')t WHERE NOT EXISTS (SELECT 1 FROM ['
    + @DestinationTable
    + '] WHERE ['
    + @PrimaryLeyColumn
    + '] = t.[' +
    @PrimaryLeyColumn +
    declare
    @Appendcount INT
    declare
    @SQLStringCount nvarchar(500);
    declare
    @ParamDef nvarchar(500);
    declare
    @TabName nvarchar(500);
    SET
    @SQLStringCount =
    N'SELECT @COUNT=COUNT(1) FROM '+
    @DestinationTable;
    SET
    @ParamDef =
    N'@TABLE varchar(30),@COUNT BIGINT OUTPUT';
    EXECUTE
    sp_executesql @SQLStringCount,
    @ParamDef ,@Table=@TabName,
    @COUNT=@Appendcount
    OUTPUT;
    --Getting the rowcount as a output parameter from the sp_executesql.
    if
    @Appendcount != 0
    PRINT
    'Database is "Updated" with total number of Records= '
    + Cast(@Appendcount
    AS VARCHAR(200))
    end
    try
    Begin
    Catch
    if @DestinationTable is null or @DestinationTable = ''
    DECLARE
    @ErrorNumberUT INT
    = ERROR_NUMBER();
    DECLARE
    @ErrorMessageofUpdateTable
    NVARCHAR(max)
    = ERROR_MESSAGE();
    PRINT
    'Error, Table not exists in the database'
    PRINT
    'Actual error number: ' +
    CAST(@ErrorNumberUT
    AS VARCHAR(10));
    PRINT
    'Actual Error Message: '
    + CAST(@ErrorMessageofUpdateTable
    AS VARCHAR(max));
    end
    Catch
    end
    To execute this code I am using this script
    EXEC
    [ImportExcelFile_Update_Error_Handling]
    'D:\TestFiles\Test_Updates.xlsx','sheet1','Error_Handing','update','[SUPLR_DUNS_NBR]';
    [SUPLR_DUNS_NBR] is the column where I have "ID to match" with new and old content in my excel and if this content same in my sql table then skip else insert the row.
    Any support in this would ge really helpful to achive my tasks goal. 
    thanks
    SharePoint_Consultant_EMEA

  • Quick Functions, export to Excel and variable screen pop up do not function

    We have put the following in place in our environment.
    http://help.sap.com/saphelp_nw70/helpdata/en/45/2f76471ca96d7be10000000a114a6b/content.htm
    Integrating into an SAP NetWeaver 2004 Portal (SAP EP 6.0).
    The creation of the iview using the SAP BW Report iview template using version SAP NetWeaver BI (7.0) is successfull and the report is generated correctly. The problem occurs when we try to use the Quick Function - Export to Excel. At this point nothing happens. Another example is when we access the context menu and try to access the variable screen there are no popups. When the report is executed on our SAP EP 7.01 system the same reports functions properly. I am operating with all authorization so I believe this is not the issue. Any assistance will be greatly appreciated.
    Regards,
    Brian

    Hello,
    Please check SAP Note No. 1591929 for the solution.
    If this does not help then verify your portal set-up is correct with the supportdesk tool as per note 937697.
    Regards,
    Michael

  • How to use the function EXEC_SQLCMD_MSQ in Excel?

    Hi Friends,
    can anyone explain how to use use this function EXEC_SQLCMD_MSQ in Excel to get the result.
    I have written excel macro to use this function,  statement like "Select * from t001" but the function doesn't reply any value.
    My objective is to pass the (any, generalised)
    sql statment to this function and get the result in Excel file.
    Please give the solution for this.
    Thanks
    Shankar

    Hello Shanker,
    The Fm EXEC_SQLCMD_MSQ is used in report RSMSQ020.
    U can do the same in ur report.
    If useful reward the points.
    Regards,
    Vasanth

  • Statistical calc with MDX question (Mode function as an excel)

    Hi All,
      I need to create an MDX Calc to Returns the most frequently occurring, or repetitive, value in an array or range of data.
      For example, the mode of 2, 3, 3, 5, 7, 10 is 3.
      In Excel I use the MODE() function but I don't know how to do this in MDX and add it as a measure in Universe.
      I can't do the formula in WEBI because we have big data volume and I can't retrieve all the customers in WEBI.
      We have SAP BW 7.0 and SAP BusinessObjects XI 3.1 fix pack 1.3
    Thanks in advance.

    Hi,
    it looks like you created the entry twice so I would suggest you close on of them:
    Statistical calc with MDX question (Mode function as an excel)
    I don't think that those kind of statistical functions are available in MDX. you can always go to se37 and use the bapi_get_functions to see the list of supported functions.
    Ingo

  • Arrow keys in Excel

    I'm using a MAC OS X computer.  In Excel I can't move the arrow keys through the document.  Did I lock the scroll button?

    You are most welcome
    Feel free to ask me anything that may come up, I would rate myself a 7/10 on a the tecnical side of mac. 9/10 on all other apple products

  • What key is used as home key for Excel?

    Got Excel for Mac and using on Mac Air but can't work out which keys are designated as Home and End. Have looked at Excel help but it just tell me to use Home and End which don't exist.
    Any Ideas

    see if this helps: http://www.uwgb.edu/compserv/ehelp/macos/Excel_Shortcuts_Mac.pdf

  • HT204216 Arrow keys in Excel

    Hi, In excel when I'm using the arrow keys the cell does not moves but instead moves the background. Can anybody help me change the arrow keys behavior moving the cell up/down/left/right? thanks

    http://answers.microsoft.com/en-us/mac/forum/macexcel?tab=Threads

  • Absolute function

    hi,
       Some one please help in finding the equivalent function module for WS_QUERY.
    Girish.

    Hi,
    The Equivalent Function Module for WS_QUERY-File Exist in ABAP 4.7 is CL_GUI_FRONTEND_SERVICES=>FILE_EXIST or WS_QUERY-Directory Exist  is CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST.
    Sample code for Replacement of WS_QUERY-File Exists is::
    data: WK_DIRECTRY(128)   TYPE C .
    CALL FUNCTION 'WS_QUERY'
         EXPORTING
           FILENAME       = WK_DIRECTRY
           QUERY          = 'FE'
         IMPORTING
           RETURN         = RC
         EXCEPTIONS
           INV_QUERY      = 1
           NO_BATCH       = 2
           FRONTEND_ERROR = 3
           OTHERS         = 4.
    <b>Repleacement Function module is :</b>
        DATA: W_FILENAME TYPE STRING,
              W_RESULT  TYPE C.
              W_FILENAME = WK_DIRECTRY.
        CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_EXIST
           EXPORTING
             FILE                 = W_FILENAME
           RECEIVING
             RESULT               = W_RESULT
           EXCEPTIONS
             CNTL_ERROR           = 1
             ERROR_NO_GUI         = 2
             WRONG_PARAMETER      = 3
             NOT_SUPPORTED_BY_GUI = 4
             others               = 5.
        IF SY-SUBRC <> 0.
               MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-* MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF W_RESULT IS INITIAL.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST
            EXPORTING
              DIRECTORY            = W_FILENAME
            RECEIVING
              RESULT               = W_RESULT
            EXCEPTIONS
              CNTL_ERROR           = 1
              ERROR_NO_GUI         = 2
              WRONG_PARAMETER      = 3
              NOT_SUPPORTED_BY_GUI = 4
              OTHERS               = 5.
          IF SY-SUBRC <> 0.
          ENDIF.
        ENDIF.
          IF W_RESULT = 'X'.
             RC = '1'.
          ELSE.
             RC = '0'.
          ENDIF.

  • Excel 2011 Is there a way to set hyperlinks to require CTRL key in Excel 2011

    I am using EXCEL 2011 on Yosemite.  I have a spreadsheet to keep addresses including emails and websites.  I need to update and edit.  overtime i click on a cell, it QUICKLY takes ne to an email or Safari.  I have been used to having to use <CTR> before following a hyperlink.  Can this be set up in a MAC???

    When I do understand your question: just click the hyperlink in Excel 2011 for Mac.

  • Call function POPUP_TO_CONFIRM after Excel close

    Good morning
    I have written code like this
    DATA: EXCEL TYPE OLE2_OBJECT.
      DATA: BOOKS TYPE OLE2_OBJECT.
      DATA: BOOK  TYPE OLE2_OBJECT.
      DATA: CELL  TYPE OLE2_OBJECT.
      DATA: FONT  TYPE OLE2_OBJECT.
      DATA: FILE  TYPE OLE2_OBJECT.
      CREATE OBJECT EXCEL 'EXCEL.APPLICATION'.
      CALL METHOD OF EXCEL 'WORKBOOKS' = FILE.
      CALL METHOD OF FILE 'OPEN'
        EXPORTING
          #1 = 'C:temp8D.xls'
          #2 = 1.
    CALL METHOD OF EXCEL 'CELLS' = CELL
        EXPORTING
          #1 = 6
          #2 = 'C'.
      SET PROPERTY OF CELL 'VALUE' = zak_pomoc.
    CALL METHOD OF EXCEL 'QUIT'.
      FREE OBJECT EXCEL.
    If user has modified the 8D file I want display this file on the screen, but first function POPUP_TO_CONFIRM  should ask him if he really wants to show file.
    I make it like this.
      call function 'POPUP_TO_CONFIRM'
        EXPORTING
          TITLEBAR              = 'Display report'
          TEXT_QUESTION         = 'Display report 8D?'
          DEFAULT_BUTTON        = '1'
          DISPLAY_CANCEL_BUTTON = 'X'
          START_COLUMN          = 25
          START_ROW             = 6
        IMPORTING
          answer                = ans.
             if ans eq '1'.
    DATA gs_excel TYPE ole2_object .
      DATA gs_wbooks TYPE ole2_object .
      DATA gs_wbook TYPE ole2_object .
      DATA gs_application TYPE ole2_object .
      CREATE OBJECT gs_excel 'EXCEL.APPLICATION' .
      SET PROPERTY OF gs_excel 'Visible' = 1 .
      GET PROPERTY OF gs_excel 'Workbooks' = gs_wbooks .
      GET PROPERTY OF gs_wbooks 'Application' = gs_application .
    *--Opening the existing document
      CALL METHOD OF gs_wbooks 'Open' = gs_wbook
        EXPORTING
          #1 = 'c:temp8D.xls'.
    endif.
    But there is my problem because two windows: first- asking about saving the file and the second- asking about showing the file, pop up in this same time.
    What condition should I write to call second window after this first one?
    Please, any suggestions?
    Thank you.

    Hello
    I'm just beginner and there is one thing I don't understand. Between lines
    CALL METHOD OF EXCEL 'QUIT'
    and
    FREE OBJECT EXCEL
    the window 'Do you want save changes' appears. And in that moment what is the value that says if the user chooses OK or QUIT?
    If I would know that value, I could call function POPUP_TO_CONFIRM in the right moment.

  • Timeout when using  ALV build-in functionality: exporting to Excel

    Hello,
    I have the following problem within one of my web dynpro abap applications:
    I need to be able to display data in a table that preferably should be via alv component.
    Then I shall also be able to download the displayed data via Excel.
    So I have embedded the ALV component I added to the component within a view and activated the export to excel button.
    Downloading small amount of data does no lead to any problem, but when trying to process a larger amount of data (in this case 22500 entries), I get a timeout.
    Does anybody have any idea if it is possible to increase performance here without reducing the amount of data to be downloaded?
    thanks a lot ion advance!
    Ana

    Hello,
    coming back to the UI element download.
    I managed to get the data being saved to the desktop, but unfortunately, the data remains being displayed as in chines letters.
    Anybody got an idea, what parameters I might have set wrong? Or if I have to do an additional encoding before generating the XString?
    Here is the supply method code and the parameters I have set in the UI element:
    The Supply method
    method GEN_EXCEL_DOWNLOAD_DATA .
      data: wa_cmx_line type zksb_cmxshowline.
      data: lt_excel type zksb_cmx_excel_download_t.
      data: wa_excel type zksb_cmx_excel_download.
      data: l_guid type guid_32.
      data: l_url type string.
    * read context-------------------------------------------------------------------------------------
      data lo_nd_z_ksb_get_prcm type ref to if_wd_context_node.
      data lo_nd_exporting type ref to if_wd_context_node.
      data lo_nd_rt_zksb_cmx_show type ref to if_wd_context_node.
      data lo_el_rt_zksb_cmx_show type ref to if_wd_context_element.
      data lt_rt_zksb_cmx_show type table of wd_this->element_rt_zksb_cmx_show.
      data wa_rt_zksb_cmx_show like line of lt_rt_zksb_cmx_show.
    *   navigate from <CONTEXT> to <Z_KSB_GET_PRCM> via lead selection
      lo_nd_z_ksb_get_prcm = wd_context->get_child_node( name = wd_this->wdctx_z_ksb_get_prcm ).
    *   navigate from <Z_KSB_GET_PRCM> to <EXPORTING> via lead selection
      lo_nd_exporting = lo_nd_z_ksb_get_prcm->get_child_node( name = wd_this->wdctx_exporting ).
    *   navigate from <EXPORTING> to <RT_ZKSB_CMX_SHOW> via lead selection
      lo_nd_rt_zksb_cmx_show = lo_nd_exporting->get_child_node( name = wd_this->wdctx_rt_zksb_cmx_show ).
    *   @TODO handle not set lead selection
      if lo_nd_rt_zksb_cmx_show is initial.
      endif.
    * get static attributes table
      lo_nd_rt_zksb_cmx_show->get_static_attributes_table( importing table = lt_rt_zksb_cmx_show ).
    * reduce data to only the data that shall be displayed----------------------------------------
      loop at lt_rt_zksb_cmx_show into wa_rt_zksb_cmx_show.
        move-corresponding wa_rt_zksb_cmx_show to wa_excel.
        append wa_excel to lt_excel.
      endloop.
    * populate data as tab separated strings-----------------------------------------------------
      data l_str  type string.
      data lv_struct type extdfiest.
      data itab type ref to zksb_cmx_excel_download_t.
      data r_xstring type xstring.
      data s(256) type c.
      field-symbols <wa_desc> like line of lv_struct.
      field-symbols: <tab> type table.
      field-symbols:  <wa> type any.
      field-symbols:  <f> type any.
    * populate the column headers----------------------
      get reference of lt_excel into itab.
    * assign lt_excel to <tab>.
      assign itab->* to <tab>.
      lv_struct = wd_this->get_table_structure( itab = itab ).
      loop at lv_struct assigning <wa_desc>.
        concatenate wa_cmx_line
                    <wa_desc>-coltitle
                    cl_abap_char_utilities=>horizontal_tab
                    into wa_cmx_line.
      endloop.
      concatenate wa_cmx_line
                  cl_abap_char_utilities=>cr_lf
                  into wa_cmx_line.
    * loop through the data table-----------------------
      loop at <tab> assigning <wa>.
        loop at lv_struct assigning <wa_desc>.
          assign component sy-tabix of structure <wa> to <f>.
          check sy-subrc = 0.
          if <wa_desc> is assigned and <wa_desc>-convexit is not initial.
    *  Process any output conversion routines
            concatenate 'CONVERSION_EXIT_' <wa_desc>-convexit '_OUTPUT' into wa_cmx_line.
            call function wa_cmx_line
              exporting
                input  = <f>
              importing
                output = s.
          else.
            concatenate wa_cmx_line
                     <f>
                      cl_abap_char_utilities=>horizontal_tab
                      into wa_cmx_line.
          endif.
        endloop.
        concatenate wa_cmx_line
                    cl_abap_char_utilities=>cr_lf
                    into wa_cmx_line.
      endloop.
    *Convert the strings to Binary strings (UTF-16le)------------------------------------------------
      call function 'SCMS_STRING_TO_XSTRING'
        exporting
          text     = wa_cmx_line
          mimetype = ''
        importing
          buffer   = r_xstring.
    *Add the UTF-16 Little Endian Byte Order Mark to the begining of the file
      concatenate  cl_abap_char_utilities=>byte_order_mark_little
                   r_xstring
                   into r_xstring in byte mode.
    * set context
      DATA lo_nd_excel_download TYPE REF TO if_wd_context_node.
      DATA lo_el_excel_download TYPE REF TO if_wd_context_element.
      DATA ls_excel_download TYPE wd_this->element_excel_download.
      DATA lv_excel_download_data LIKE ls_excel_download-excel_download_data.
    * navigate from <CONTEXT> to <EXCEL_DOWNLOAD> via lead selection
      lo_nd_excel_download = wd_context->get_child_node( name = wd_this->wdctx_excel_download ).
    * get element via lead selection
      lo_el_excel_download = lo_nd_excel_download->get_element(  ).
    * set single attribute
      lo_el_excel_download->set_attribute( name =  `EXCEL_DOWNLOAD_DATA`  value = r_xstring ).
    endmethod.
    and the parameters to the UI are as follows
    behaviour: allowSave
    data: <data that was created by supply method>
    fileName: CMX.xls          also tried CMX.cvs
    mime-type: ms-excel     also tried  /vnd.ms-excel
    text: $OTR:SOTR_VOCABULARY_BASIC/DOWNLOAD
    textDirection: inherit
    type: navigation
    visible: Visible
    Any suggestion of what I might have to change would be great!
    Tx
    Ana

  • Original document should not copy thro save as Function in WORD & EXCEL

    Hi,
    When the microsoft originals like Word or XL file are displayed using ECL viewer in document display transaction (CV03N), the originals can be copied to local disc using " SAVE AS" function in microsoft word and excel menu. Is there any option to make those button in display mode.
    Please suggest.
    Regards
    Chandrasekaran

    Hi
    SAP DMS and also ECL Viewer & Office viewer does not have any authorization object for controlling "save as.." function.
    All existing authorization objects are related to Display originals. It means that if users have authorization object for Display an original, also they can "save as" this original.
    But you can set "save as" to gray (display) with ABAP codes by changing related screens.
    regard,
    akbar rangamiz

  • SmartView disables the "Save As" Function in MS Excel 2007 / Vista

    Does anyone know how to get around this issue? I have Vista and Office 2007. When SmartView is installed, it does not allow me to use the "Save As" Function in Excel. SmartView has now rendered my Excel to be useless. Thank you Oracle.
    Does anyone have any thoughts?
    Thanks,

    Hi,
    Could this be related to this thread:
    Smartview Office Error (Unable to Save)
    Seb

  • Planning function in layout excel

    Hi,
    i have attached a planning function to a layout excel with standard functionaly.  If i use this layout in a planning folder doesn't work. If i use layout from bps0 it's everything ok.
    Is there any reason ?
    Thanks in advance

    To perform Automatic execution of a function the planning function must be below the Layout and the layout must be an input layout.
    If you open the Input layout hierarchy in the Tcode UPSPM, it will show as Input layout-> Your Layout-> Your planning function.Right mouse click on the planning function in UPSPM, select 'Function Attributes' and select the one of the 5 options which is appropriate for you.
    Hope this helps
    NS

Maybe you are looking for

  • Replication of Customer from ECC to CRM --- Multiple A/c Groups

    Hi Experts, I am trying to replicate customer master data from ECC6.0 to CRM7.0 and vice versa. Replication is up and running right now for only one Account Group (GEN-Z created for business) in ECC.This A/C Group (GEN) is mapped to BP Classification

  • How to use dll function in JDeveloper?

    I want to use function in dll to develope my application,but I can't find how to do that in the JDeveloper document. null

  • How to create a standby site for Oracle BISE1

    Hi, I want to build a standby site for my BISE1 site. The primary requirement is that in case of a disaster, when the primary site will be down, the standby site can continue providing the services. I can build STDBY database for the primary warehous

  • Disappear Log file(access log).. humm..

    DS5.1sp1 on SunOS 8 suddenly access log was disappear about two month ago. so, log file is only 2 ~ 3 exist. why? Any solutions? Please

  • When i plug in the iPod computer speakers make a screeching sound.

    I think this issue has bin going on ever since i have my ipod whick is christmas 2005. but i just write bout it now because i never had time...ok so... When i plug in the iPod everything goes fine, windows does that litle blirp sound, itunes recogniz