Date de modification d'une cellule

Bonjour,
Je souhaiterai afficher dans une cellule la date de modification de la cellule adjacente.
Quelqu'un a une idée ?
Merci d'avance

There is no automatic way to store the modification date/time of a cell in Numbers.  The best example I've seen is to keep a cell available that has the now() function in it which you copy and paste (using the menu item "Edit > Paste Values") into the location where you want the time/date stamp.
French (translated using the Translate widget):
Il n'y a aucune voie automatique d'enregistrer le date/heure de modification d'une cellule dans les nombres.  Le meilleur exemple que j'ai vu est de maintenir une cellule disponible qui a la fonction de now () dans lui ce que

Similar Messages

  • Lire le contenu d'une cellule dans une feuille Excel

    Bonjour,
    Dans un fichier Excel, j'ai plusieurs feuilles, dans une des feuille (par exemple feuille: Dispersion) j'ai une cellule qui se situe à la colonne 3 et la ligne 5, cette cellule contient une valeur (par exemple 500). Donc depuis un VI, comment je peux lire le contenu de cette cellule pour sortir la valeur 500 ?
    Si je n'ai qu'une feuille je peux utiliser la fonction "Read From Spreadsheet File.vi" pour lire dans un fichier de format txt, mais ici j'ai une fichier Excel avec plusieurs feuilles dedans, comment je peux lire une cellule dans une feuille précise? Merci pour votre éclairage . Bon week end à vous tous.
    Solved!
    Go to Solution.

    Bonjour, Jetez un oeil sur ce lien.
    http://zone.ni.com/devzone/cda/epd/p/id/3409
    CLA 2014
    CCVID 2014

  • Comparer la date de modification de deux fichier

    Bonjour,
    Comment comparer la date de modification de deux fichiers en Apple script ?
    Merci de votre aide

    Pardon mon français, mais:
     -- Sélectionnez les fichiers
    set file1 to (choose file with prompt "Sélectionnez le premier fichier")
    set file2 to (choose file with prompt "Sélectionnez le second fichier")
     -- trouver les dates
    set file1date to modification date of (info for file1)
    set file2date to modification date of (info for file2)
      -- les comparer
    if file1date is less than file2date then
        -- file1 est plus vieux
    else if file1date is greater than file2date then
        -- file1 est plus récent
    else
        -- ce sont les mêmes
    end if

  • Comment ajuster automatiquement (réduire ou agrandir) un texte dans une cellule de format fixe ?

    J'aimerais  ajuster automatiquement (réduire ou agrandir) un texte dans une cellule de format fixe de la même façon qu'il est possible de le faire dans Microsoft Excel. Cette opération est très utile lorsque le texte est plus grand que la cellule dans lequel il se trouve et permet de ne pas réajuster l'ensemble du tableau à cause d'un seul texte trop grand.

    Voici deux captures d'écran qui démontre la fonctionnalité dans Excel. L'Idée est d'automatiser la réduction de la force de corps du caractère dans une cellule. De cette façon, en utilisant un gabarit indesign, je pourrai mettre en place des titres dans des cellules de tableau et la force de corps de ces titres s'ajuste en fonction de l'espace disponible.

  • TS3579 Finder is displaying wrong information on date of modification and when files are opened up, this did not help me. I am using Mavericks.

    Never tried this before but this, the topic, is a little bit annoying at times.. any idea how to fix this or is this just how it will be? This is not OS X ML tho as stated in topic.

    I've just reported that to Apple at https://www.apple.com/feedback/macosx.html
    It's fair to call it a bug I think. Opening a folder changes the modification dates of some, but not all, the folders enclosed.
    Plays havoc with organising time series (backups, things one has just worked on, etc.).

  • Query date range modification

    Hi there, im new to BW and query designer. Im on BW 7.3. User has requested me to make modification to and existing BEX query. This query at present returns 1 month worth of data. the user now wants this query to return last year + current YTD data. How do I approach this modification, please suggest. thanks Regards

    Hi Samique,
    It is not clear why do you need the user to provide input for a report spanning from last year to YTD. I can only assume that it is either to decide the period till which YTD(year to date) values are to be calculated or to decide which of the last year periods will be considered.
    e.g. if user inputs 003.2015 then this will be the end period for YTD calculation or the last year data to be considered will be from 003.2014. Please provide clarification for this part.
    These both cases can be achieved using customer exit variable.
    Suppose you accept the user input in say variable Var1.
    Now, you need to create a new variable, VAR2, on 0FISCPER characteristics, with properties, select options range and processing as customer exit.
    In your query designer in the filter pane-> characteristics restriction, you must restrict 0FISCPER with Var2.
    Now in CMOD tcode you need to write a logic to fill the values for Var2.
    Logic could be as follows:
    Data: Curr_Period(7) TYPE C,
             Year (4)           TYPE C. 
    WHEN 'Var2'.
       IF i_step = 2.
         LOOP AT  i_t_var_range INTO  loc_var_range  WHERE  vnam = 'VAR1'.
          l_s_range-low = loc_var_range-low. (assuming the YTD end value is the user input)
    **OR ELSE if the YTD value is to be derived from system date then
         Curr_Period = get_period_from_date (sy-datum) . (pass system date to get current period )
         l_s_range-low = Curr_Period .
    Year =  loc_var_range-low(4) - 1 . (get last year value from Var1)
    CONCATENATE Year loc_var_range-low+4(3) INTO l_s_range-high.
    (Assuming the last year data is required from the period as entered by user).
    OR ELSE if entire last year data is required then
    CONCATENATE Year '001' INTO l_s_range-high.
           l_s_range-sign    = 'I'.
           l_s_range-opt      = 'EQ'.
        APPEND l_s_range  TO  e_t_range.
    EXIT.
    ENDLOOP.
    ENDIF.
    ENDCASE.
    Hope this helps.
    -Swati.

  • Tree interface concept for hierarchical data creation/modification

    I am designing an interface for hierarchical data creation and maintenance. The interface will have to provide all basic data modifications options:
    edit an existing node, add new child/parent/sibling, as well as removing, sorting, dragging and dropping nodes around. Flex tree control is fully capable of all these functions while coding is not going to be a simple task. Has anyone worked on something like this? Any conceptual ideas?
    Thanks

    WOW Odie! You're awesome !! It worked like a charm, I created a view as you suggested:
    CREATE OR REPLACE FORCE VIEW "VIEW_TASKS_PROJECTS_TREE" ("ID", "PARENT_ID", "NODE_NAME") AS
    SELECT to_char(id) as id
    , null as parent_id
    , project_name as node_name
    FROM eba_task_projects
    UNION ALL
    SELECT to_char(id)
    , to_char(project_id)
    , task_name
    FROM eba_task_tasks;
    And then I created a new tree with the defaults and customized the Tree query a bit (just added the links really):
    select case when connect_by_isleaf = 1 then 0
    when level = 1 then 1
    else -1
    end as status,
    level,
    "NODE_NAME" as title,
    null as icon,
    "ID" as value,
    null as tooltip,
    'f?p=&APP_ID.:22:&SESSION.::NO::P22_ID,P22_PREV_PAGE:' || "ID" || ',3' as link
    from "#OWNER#"."VIEW_TASKS_PROJECTS_TREE"
    start with "PARENT_ID" is null
    connect by prior "ID" = "PARENT_ID"
    order siblings by "NODE_NAME"
    Thanks man, you saved me a lot of time and headaches :)

  • Date Added modification?

    Does anyone know a command to change the "Date Added" extended Finder info? I'm using 10.5.1 and Google is less than helpful. What I'm looking to do is force something to always appear as the last-added file to the folder when I view it with a stack even though it isn't. Modification time and creation time don't have the desired effect.

    Cesar,
    That's a good suggestion. We'll work that into our updates to our FAQ.
    Thanks,
    Linda

  • Position d'une cellule dans une table ou liste multicolonne...

    Bonjour,
    Comment récupérer la position de la cellule choisie dans une table ou une liste multicolonne lors d'un évènement (par exemple) ?
    merci.

    Hello... (ATTENTION you're writting in a english forum)
    I can only give you some tips. It would some time (that I don't have) to do you an example.
    In my knowledge, there not direct event associated to that. What you have to do it's:
    create table event. when this event triggers, you can determine the cell position, using the table origin and the mouse coordinates. With these 2 things you can do a simple math and determine what cell was clicked.
    i hoppe that this helps you
    Software developer
    www.mcm-electronics.com
    PS: Don't forget to rate a good anwser ; )
    Currently using Labview 2011
    PORTUGAL

  • Comment verrouiller une cellule ? pour la protéger

    Mon exemple : travail en milieu scolaire , utilisation de la fonction "SI" dans un tableur !
    La feuille : un Sudoku avec des zones de contrôle pour les lignes , colonnes et carrés de 9 cases ! : chaque fois qu'un de ces éléments obtiens un total de 45 , la case de contrôle affiche un "OK" ( Formule : =SI(A1+A2+A3+A4+A5+A6+A7+A8+A9=45;"OK;"")
    Comme on peut le voir sur la copie d'écran, deux zones de protection (objet "rectangle") ont été disposées sur les zones à protéger
    il s'agit des deux zones légèrement translucide (pour la mise en évidence)
    Lors de l'effaçage de la grille de Sudoku pour en tenter une nouvelle, en cliquant dans la cellule C3 et étendant la sélection pour effacer la grille , rien n'empêche de "déborder" sur la zone des formules (en passant sous les rectangles pourtant verrouillés) et donc de détruire ce qui devait être protégé !!
    Protection donc parfaitement inutile !!

    The best protection is a separate Locked Table. Even that is not true protection, just a deterrent.
    So, place your input grid on one table and your equations on a separate table, placed behind the input table, and lock the calculation table.
    Jerry

  • Data Base modification.

    sir,
    I know, as programmer I'm asking wrong question.
    Actually, I modified posted sales invoce(VF02), and related Fi accounting documents.
    that is 1)Accounting Document  2)Profit Center Doc. 3)Controlling Document.
    Now problem is that:- General Ledger Account balance displayed in transaction FAGLB03,
    may not match with balance for the same period (that is period 7) 
    on double clicking on cell in FAGLB03.
    But the balances after double click are correct and I cannot modify FAGLFEXT table
    because it contains very huge amount.
    Can any one help me, to  correction of the balances on FAGLB03 or avoid inconsistance
    in data base .
    Thank You,
    Manoj.

    Hi Manoj ,
    Due to your manual changes in the database , it has become inconsistent.
    You should avoid these types of changes untill you know full process flow and all the database tables that are needed to be updated.
    Suggessions :
    1. Keep record of your changes , it may require to be reverted.
    2. Try to find all the database tables that are updated during the process.Use Trace for this, Search insert and modify statements.This is time consuming.
    3. Go in techincal setting of the field showing wrong value and check if it is dirct froma database table , if yes you can update the database table.
    If it is structure , use where use list.
    Hope this provide you some help.

  • Data model Modification !!!

    Hi,
    I have one extractor which is running slow and its performance was to be enhanced...
    ( it is generic extraction with Function Module in its definition ) .
    Now that i had modified the coding and its performance has increased considerbly.
    For that i had created separate data source and separate Function module and of course a seperate DSO for testing. For testing i had used transformation and DTP.
    But the original model has the infosurce, transfer rules and Update rule concept.
    Now since testing is done and data being identical in both old and new DSO i need to include the newly modified FM logic into that of original FM. That is not a big deal.
    Now the requirement is that the original model also need to be enhanced to Transforamtion DTP and not the existing Infosurce transfer rules and Update rules concept. In other words the old data source has to be migrated to RSDS datasource .
    I am following the below approach to achive the same:
    1) Make the original FM  as a copy of new FM
    2) Activate the data source in R/3
    3) Replicate datasource in BW system.
    4) Migrate the datasource to RSDS with export
    5) create transformation and DTP
    Since the fields are numerous and also the routines in it , i am thinking of making a copy of transformation.
    My questions are:
    1) How can i make the copy of transormations?
    2) what happens to the infosurce , trasfer rules and update rules once i migrate the data source to RSDS
    3) should the deeltion of objects like TRs, infosurce and Update rules generate a transport request?

    My questions are:
    1) How can i make the copy of transormations?
    2) what happens to the infosurce , trasfer rules and update rules once i migrate the data source to RSDS
    3) should the deeltion of objects like TRs, infosurce and Update rules generate a transport request?
    Hi...
    1.you can make copy of transformation by right click copy-->select source and target... activate
    ONly the fields present in the original transformation will be mapped.ie. if source and target of new transfm have same fields as the source and target of original transfm then u will have identical transfom
    else there would be differences..as on case basis.
    2./3 all the transfer rule vanishes..after migration..but infosource and updat rule exist so..u will need to delete them..system will prompt for transport request use it and transport it ..same will happen in target systems once you transport.
    Regards,
    RK

  • Modification d'une photo sur Indesign CC

    Bonjour à tous,
    Je suis débutante sur Indesign et n'ai fait que des CV avec pour l'instant.
    J'ai besoin de créer un flyer pour l'association dans laquelle je travaille en ce moment. Pour cela, on m'a fournit une photo sur laquelle il y a pas mal d'élément que j'aimerai cacher (c'est une affiche de film).  J'ai bien essayé l'outil rectangle sur le texte que je voulais "enlever", puis l'outil pipette, mais, c'est très voyant (et pas beau du tout). Je voulais savoir s'il y avait d'autre possibilité qui aurait un rendu plus subtile que le gros rectangle d'une couleur douteuse au milieu de l'affiche? Si on pouvait éviter d'utiliser Photoshop pour cela ça m'arrangerai grandement!
    Merci à tous pour votre aide!

    InDesign cannot edit raster images beyond showing/hiding layers. You can put objects in front to mask areas, or crop, but real editing must be done in Photoshop.

  • Varchar2 Data type modification to BLOB

    I am trying to change a VARCHAR2(20) data type into a BLOB. I have researched the web and found what I thought was the solution. That was to create a new Temp column that was a BLOB data type which I did, UPDATE the information from the column I what to modify into the Temp Column, then delete the original Varchar2 column and rename the BLOB column to the deleted columns original name.
    However when I issue the UPDATE command of:
    UPDATE "CUSTOMER2" SET "TEMP_NAME"="Cust_FirstName";
    I am getting this error messages:
    ORA-01465: invalid hex number
    This is a copy of the table:
    Does anyone have any ideas? All help would be very much appreciated!
    -Robert

    Robert wrote:
    I am trying to change a VARCHAR2(20) data type into a BLOB. I have researched the web and found what I thought was the solution. That was to create a new Temp column that was a BLOB data type which I did, UPDATE the information from the column I what to modify into the Temp Column, then delete the original Varchar2 column and rename the BLOB column to the deleted columns original name.
    However when I issue the UPDATE command of:
    UPDATE "CUSTOMER2" SET "TEMP_NAME"="Cust_FirstName";
    I am getting this error messages:
    ORA-01465: invalid hex number
    This is a copy of the table:
    Does anyone have any ideas? All help would be very much appreciated!1. This is a database rather than specifically APEX question and hence better asked in the {forum:id=61} or {forum:id=75} forums.
    2. What is "a copy of the table"?
    3. Back up and explain why you're trying to do this. VARCHAR2 columns store character strings according to specific character set encodings. BLOBs store binary large objects—typically images, video, audio etc— in raw form. Although it is possible to store character data in a BLOB, this is rarely done for reasons relating to character set encoding: CLOBs are the recommended data type for large quantities of character/text information.
    Edited by: fac586 on 04-Jul-2011 11:54
    And please don't repost the same question multiple times: {thread:id=2247166}

  • Tracking and maintaining data about modifications done to Standard SAP code

    Hi All,
    I need your help to know if there is a way to track and maintain the modification changes done to standard SAP code. I have gone through SE95 but not much help. Is there any DB tables which stores these information after a standard SAP code has been modified like for example when the core Mod was done, transport number for the MOD, object in which the MOD was done, version of the object etc.
    Thanks in advance.

    Hi,
        Try the following tables.
    SMODILOG & VRSD.
    Regards
    Kiran Sure

Maybe you are looking for

  • I can send, but cannot receive E-Mail, suddenly.

    I am a new convert to the entire world of Apple, aside from a longtime Safari proponent and user. A month and a half ago, I purchased a MacBook Pro 15" (you all know the specs, I went with 512 g flash drive upgrade) and am extremely happy with it. I

  • Shell script for running obiee 11g services in linux

    Hi We have a requirement to create a shell script inorder to run OBIEE 11G services in Linux OS. It would be very helpful and greatly appreciated if any pointer(s)/documentation on this is provided. Thanks

  • Intercompany Stock transfer order with excise

    Hi, Can anyone  tell me about Intercompany Stock transfer order with excise step by step. hoping to replu

  • Tethering to a MacBook Pro

    Hi Everyone, A quick question: is anyone aware whether it is possible to tether a Verizon blackberry/treo to a MacBook Pro? Thanks very much. AHY

  • Update version 1.4

    I'd like to know what the updates are in version 1.4 I tried searching for information on the changes in version 1.4 but had difficulty finding any information. Are there any new features? Bugs fixed? I mean it would be nice to know what's different.