Copy-Paste ranks into a column

Hi, I would like to copy a ranks of 10 cells and paste it into a column.
Thank you

Hello
Enter the search tool of this forum and search for the keyword "transpose".
Yvan KOENIG (from FRANCE dimanche 17 février 2008 19:27:57)

Similar Messages

  • Copy/Paste images into Contribute CS3

    We have been copying and pasting images from Word Documents
    in Office 2003 into Contribute CS3 at my organization when
    developing content. We have been able to copy/paste images from
    Office 2003 and other programs like Paintshop Pro and SnagIt.
    Since upgrade to Microsoft Office 2007 all image copying and
    pasting has stopped working.
    Is there a known issue with this?
    Does anyone else have Office 2007 installed and is able to
    copy/paste images from a Word Document into a page in Contribute
    CS3?

    It appears that the problem only occurs if you are copy and
    pasting from something that hasn't been saved yet.
    In Word I inserted an image from my hard drive and tried to
    copy/paste it into Contribute and that failed. I then saved the
    Word Document to my hard drive, re-opened it and was able to
    copy/paste fine.
    Power Point, Snagit and Pain Shop Pro appear to have the
    problem even if it's been saved first.
    I was able to copy/paste an image from a Word Doc and
    PowerPoint into MSPaint just fine. I was also able to copy/paste
    between Office applications with out any problem. Snagit could
    copy/paste into Office just fine and MSPaint.
    This problem appears to be specific to Contribute CS3 but
    only from certain sources.

  • I made a video series on one time line and now want to copy paste sections into other tiemlines so I can separate the series into distinct videos to upload. How do I get new timelines? When I go to new event it asks for import footage.

    I made a video series on one time line and now want to copy paste sections into other tiemlines so I can separate the series into distinct videos to upload. How do I get new timelines? When I go to new event it asks for import footage.

    You seem to be new to this software, so I highly recommend that you take some time to learn it using some great tutorials available online - it will pay off to invest the time, if you follow through, for example the great (and free) introductory tutorial at izzyvideo.com.
    This is an amazing piece of software, and you'll have a lot to learn, but it's well worth it.

  • Copy/paste full row, full column, a cell on datagrid using MVVM?

    What is the best way to implement on datagrid? As I am new on this, I had some researches but I am confused because there are some complicated implementations and easy ones? I try to understand the best way.
    Adding simply selection mode and selection Unit doesnt help. Because it only copies the row but I cant paste it simply as a new row.
     SelectionMode="Extended" SelectionUnit="FullRow" >
    this approach in the article looks old to me. Not sure if there is anything new and much easier with newest framework. I am using MVVM light in my project.
    Attached is the sample project similar to my original project. can you please recommend me the best way for the following?
    - Full Row(s) copy-paste
    -1 or multiple columns copy-paste (optional)
    - cell copy-paste
    "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."

    I found the code out my project.  I last looked at this back in 2011.
    This is a custom control inheriting from datagrid.
    I don't recall where I got this code from originally.
    public class CustomDataGrid : DataGrid
    static CustomDataGrid()
    CommandManager.RegisterClassCommandBinding(
    typeof(CustomDataGrid),
    new CommandBinding(ApplicationCommands.Paste,
    new ExecutedRoutedEventHandler(OnExecutedPaste),
    new CanExecuteRoutedEventHandler(OnCanExecutePaste)));
    #region Clipboard Paste
    private static void OnCanExecutePaste(object target, CanExecuteRoutedEventArgs args)
    ((CustomDataGrid)target).OnCanExecutePaste(args);
    /// <summary>
    /// This virtual method is called when ApplicationCommands.Paste command query its state.
    /// </summary>
    /// <param name="args"></param>
    protected virtual void OnCanExecutePaste(CanExecuteRoutedEventArgs args)
    args.CanExecute = CurrentCell != null;
    args.Handled = true;
    private static void OnExecutedPaste(object target, ExecutedRoutedEventArgs args)
    ((CustomDataGrid)target).OnExecutedPaste(args);
    /// <summary>
    /// This virtual method is called when ApplicationCommands.Paste command is executed.
    /// </summary>
    /// <param name="args"></param>
    protected virtual void OnExecutedPaste(ExecutedRoutedEventArgs args)
    // parse the clipboard data
    List<string[]> rowData = ClipboardHelper.ParseClipboardData();
    bool hasAddedNewRow = false;
    // call OnPastingCellClipboardContent for each cell
    int minRowIndex = Items.IndexOf(CurrentItem);
    int maxRowIndex = Items.Count - 1;
    int minColumnDisplayIndex = (SelectionUnit != DataGridSelectionUnit.FullRow) ? Columns.IndexOf(CurrentColumn) : 0;
    int maxColumnDisplayIndex = Columns.Count - 1;
    int rowDataIndex = 0;
    for (int i = minRowIndex; i <= maxRowIndex && rowDataIndex < rowData.Count; i++, rowDataIndex++)
    if (CanUserPasteToNewRows && CanUserAddRows && i == maxRowIndex)
    // add a new row to be pasted to
    ICollectionView cv = CollectionViewSource.GetDefaultView(Items);
    IEditableCollectionView iecv = cv as IEditableCollectionView;
    if (iecv != null)
    hasAddedNewRow = true;
    iecv.AddNew();
    if (rowDataIndex + 1 < rowData.Count)
    // still has more items to paste, update the maxRowIndex
    maxRowIndex = Items.Count - 1;
    else if (i == maxRowIndex)
    continue;
    int columnDataIndex = 0;
    for (int j = minColumnDisplayIndex; j <= maxColumnDisplayIndex && columnDataIndex < rowData[rowDataIndex].Length; j++, columnDataIndex++)
    DataGridColumn column = ColumnFromDisplayIndex(j);
    column.OnPastingCellClipboardContent(Items[i], rowData[rowDataIndex][columnDataIndex]);
    // update selection
    if (hasAddedNewRow)
    UnselectAll();
    UnselectAllCells();
    CurrentItem = Items[minRowIndex];
    if (SelectionUnit == DataGridSelectionUnit.FullRow)
    SelectedItem = Items[minRowIndex];
    else if (SelectionUnit == DataGridSelectionUnit.CellOrRowHeader ||
    SelectionUnit == DataGridSelectionUnit.Cell)
    SelectedCells.Add(new DataGridCellInfo(Items[minRowIndex], Columns[minColumnDisplayIndex]));
    /// <summary>
    /// Whether the end-user can add new rows to the ItemsSource.
    /// </summary>
    public bool CanUserPasteToNewRows
    get { return (bool)GetValue(CanUserPasteToNewRowsProperty); }
    set { SetValue(CanUserPasteToNewRowsProperty, value); }
    /// <summary>
    /// DependencyProperty for CanUserAddRows.
    /// </summary>
    public static readonly DependencyProperty CanUserPasteToNewRowsProperty =
    DependencyProperty.Register("CanUserPasteToNewRows",
    typeof(bool), typeof(CustomDataGrid),
    new FrameworkPropertyMetadata(true, null, null));
    #endregion Clipboard Paste
    I used to be a points hound.
    But I'm alright nooooooooooooooooooooooooooooOOOOOWWWW !

  • Copy/paste images into pages within sharepoint online?

    There seems to be a workaround to use RadControl for this. (http://social.msdn.microsoft.com/Forums/en-US/655c080f-ec1e-4e69-b082-d35973ee426a/copy-and-paste-for-images-in-sharepoint)
    However, I don't think we can deploy custom app/binaries onto sharepoint online.
    Is there other way we can easily copy/past images into pages?
    Thx

    you cannot paste the images into sharepoint pages directly, Images cannot be rendered as HTML so cannot be pasted.
    You have to upload the images into SharePoint then insert it on the pages /places you want.
    or other work aorund buy the 3rd party tool which you mentioned.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Copy/paste images into pages within sharepoint cloud 365?

    There seems to be a workaround to use RadControl for this. (http://social.msdn.microsoft.com/Forums/en-US/655c080f-ec1e-4e69-b082-d35973ee426a/copy-and-paste-for-images-in-sharepoint)
    However, I don't think we can deploy custom app/binaries onto sharepoint 365.
    Is there other way we can easily copy/past images into pages?
    Thx

    Hi garynguyen,
    premise doesn't provide this kind of oob function to copy and paste the image into SharePoint page directly, you may develop your own solution (or use third party solution) to ahcieve this goal.
    For Office365 SharePoint online question, we have a dedicated forum as below, you can post there for a better assistance with more experts regarding this Office365 issue.
    https://community.office365.com/en-us/f/154.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • Trying to send copy/pasted content into a mass text message

    I have composed a message (some copied and pasted from an online bible) (and also commentary that I add to it) and saved it as a draft in my yahoo email on my computer. I save it as a draft. I open the draft on my iPhone 4. Then copy/paste content into a text message to send to my congregation. Many of the recipients of the text get duplicate messages with no/or partial content. I have contacted my carrier and I am fully set up to send receive both sms and mms.
    What could be the cause of this?
    How can I fix it so that the receivers of my daily message get it properly?

    When i create a message on my iPhone4 and save it into notes. it goes to my draft ( Mail ) on my computer. That tells me that there is no difference in where i create the message at. But between the copying and pasting i'm losing or something is being changed. Some of my friends are getting multiple messages and some are getting blank pages. We all have different carriers. ( T Mobile, Sprint,Verzion ) I'm waiting on another phone so i can use both of them to see if i can get my messages out

  • Add maze lock and copy paste option into asha 305

    I want to suggest to add maze lock and copy paste option into new software update of asha 305..

    i have nokia asha 305 the best phone but it the version 07.42 dosent support sum whatsapp features like copy paste and sum other features like maze lock nokia company updater plz have an upadte of noka asha 305 nd install everything tht is requierd by the phoneeeee plzzzzzzzzzzzz..........................

  • Quality of copy & paste graphs into webpage

    I have created a simple spreadsheet with several bar graphs. I can copy and paste each graph into a web page, but the "X" and "Y" number labels are blurred and jagged,(poor image quality) unlike the original spreadsheet. I can, however, copy and paste the graphs with good quality into both pages and keynote. Even when I copy the graphs from either pages or keynote, the resolution drops when I import it into the webpage. Is there a different way to save or export the graphs with crisp axis numbers (higher resolution) and insert it into a webpage?

    You may also notice that the chart title and legend will be missing if you copy/paste to non-iWork applications. The jaggies sounds like like your web publishing application is converting it to a jpg and you are enlarging it from its original size.
    Here is what I do when I want to paste a chart in a non-iWork application and I want the title and legend too: Print the page (cmd-P) but don't actually print it, choose "Open PDF in Preview" from the PDF button in the Print window. In Preview, use the lasso tool to select the chart. Copy. Paste it to where you want it.
    I doubt this will remove the jaggies in your web page, though. You may have to enlarge the chart before copying it (or before doing the Open PDF in Preview routine) so that it is large enough to not have to be scaled up in your web page. Or figure out how to get your web page to accept it as a PDF, in which case it will scale without jaggies. Or save from Preview as a jpg with high resolution.

  • Copy & Paste data into Planning form in Workspace 11.1.2.2

    Hi there!
    I'm dealing with a weird problem with Planning 11.1.2.2 over workspace. I cannot paste copied data into data forms (whether I copy from an Excel sheet, a file, or another cell of the same form).
    However, when I access Planning directly through :8300/HyperionPlanning/LogOn.jsp (old-styled Planning), pasting data works fine.
    I tried using Ctrl + V and menu buttons, and didn't work.
    Thanks in advance!

    Hi,
    Not sure which web browser you were working on, but this is from the 11.1.2.2 Known issues for Planning
    12360405 -- With Firefox, you cannot copy and paste data from Microsoft Excel into a Planning form.
    Hope this helps..!!
    Thanks,
    hyperionEPM
    Please mark answers as helpful or correct for others to find them easily.

  • Copy/pasting content into one project from another.

    When I copy pictures from one project into another, it just leaves me with black pictures for the duration of the other ones...how do I fix this?

    Thank you. Just from the curiosity, why saving a final project under a new name?

  • Copy blob images into ORDIMAGE column

    Hi
    I actually have a table (TABLE1) with a blob column. Images are Stored in this table. In order to user Intermedia Image (scale method), I need to put this images into a table (TABLE2) with an ORDIMAGE type column.
    TABLE1
    ID NUMBER
    PHOTO BLOB
    TABLE2
    ID NUMBER
    PHOTO ORDSYS.ORDIMAGE
    I'm able to insert data in the new table, but the properties of the ordimage columns are not set properly and I get IMG-704 when I try to use the setProperties method of the Ordimage columns.
    Can anyone Help ?
    Thanks
    Olivier GIBERT
    null

    Here is the proc I Use to transfer from blob table named photo to ORDIMAGE table named PHOTO_TEST
    procedure blob_to_ordimage is
    cursor get_blob_cur is
    select numphoto
    , photo
    from photo
    where rownum<50;
    localImage ordsys.ordimage;
    begin
    delete from photo_test;
    FOR get_blob_rec IN get_blob_cur
    LOOP
    localImage := ordsys.ordimage(ordsys.ordsource
    (get_blob_rec.photo,null,null,
    null,null,null),null,null,null,null,null,null,null);
    localImage.setLocal();
    insert
    into photo_test
    ( numphoto
    , photo)
    values
    ( get_blob_rec.numphoto
    , localImage);
    END LOOP;
    commit;
    end;
    this proc works fine but image properties are unset.
    If I add the following command :
    localImage.setProperties;
    after the Image.setLocal, I get ORA-704.
    Can anyone help ???
    null

  • Copy-Pasting paths into Photoshop

    I've made a vector-only AI file that I need to import into Photoshop. But when I press Ctrl-V in Photoshop, nothing happens. If I try to drag the path from Illustrator to Ps, I either get a message saying "The operation cannot complete because of an unknown error [usBt]", or Illustrator will just crash immediately. In fact, sometimes the error message pops up as soon as I switch the window from Illy to Ps, before doing any paste operation.
    I've tried playing around with different combinations of clipboard options in Illustrator, but nothing helped.
    For now, apart from trying to resolve this error, I'm also looking for an alternative method to convert AI paths to Photoshop. Any help would be appreciated.

    Additional info:
    When Illustrator crashes on drag-drop, the last message it displayed was "Converting dragged items to EPS (AICB) format."
    Also, I realized that my Illustrator can't save in PDF or EPS either; I get a "Can't save the illustration." message.
    I've done a reinstall (Ps and I) but the problem persists.
    I'm running CS3 Design Standard, with the latest updates AFAIK, on WinXP SP3.

  • Unable to edit/copy/paste anything into the Comments section...

    With 4 ipods and a wide variety of musical taste, I have a very extensive library of songs that are assigned to one or more playlists by the name in the comments section. This has been very useful ... up until now.  I no longer can edit the comments section of the songs on my main library. any idea why not and how can I fix this?  Having worked like a charm in the past, not sure if this was because of a computer move to Windows 7 or the lastest iTunes update.  any assistance would be appreciated!

    this worked: thanks Sue.Cat:
    I seem to have fixed the problem for me though by doing the following:
    - open 'properties' on the highest level folder you want to change attributes
    - click 'security' tab
    - click 'advanced'
    - click 'change permissions'
    - click 'add'
    - enter 'Everyone' in the 'enter the object name to select' dialog box
    - click 'check names'
    - click OK
    - click 'full control' in the 'allow' column
    - click OK
    - click the box (turn on) 'replace all child object permissions with inheritable permissions from this object'
    - click OK
    - confirm any 'are you sure' type messages that pop up along the way
    and you should be set! Whew!

  • Can't copy & paste image into email using Safari

    Just what it says. If I use firefox, the image (not just the link) appears in the reply text box of the email I'm writing.
    if I use Safari, all I get is a little blue box with a question mark.

    I don't use GMail, so I can't answer your question. Maybe someone else can. Try the GMail user forums.

Maybe you are looking for