Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
330
How to paste only cells with data from clipboard from Excel?
posted

When i pasted selected colums or rows from Excel by clipboard, spreadsheet add many void cell without data into end of document.

How to paste only cells with data from clipboard?

Or how to fast remove void columns or void rows from worksheet?

Thanks.

Parents
  • 17475
    Offline posted

    Hello Igor,

    I have been looking into this behavior and currently there is no built-in functionality that will remove the empty rows and columns in the pasted worksheet. You can consider adding this as a suggestion at http://ideas.infragistics.com/
    Submitting your idea will allow you to communicate directly with our product management team, track the progress of your idea at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.
    Remember when submitting your idea to explain the context in which a feature would be used and why it is needed as well as anything that would prevent you from accomplishing this today. You can even add screenshots to build a stronger case. Remember that for your suggestion to be successful, you need other members of the community to vote for it.  You can also link back to this thread for additional details.
    You may also have a look at the SpreadsheetCommandType enumeration. It provides values for operations to be taken. E.g. the LastUsedCell can be used to navigate to the last cell with data:
    var command = new SpreadsheetCommand(SpreadsheetCommandType. LastUsedCell);
                command.Execute(this.xamSpreadsheet1);
    Here is a documentation page with all the commands that could be used http://help.infragistics.com/Help/Doc/WPF/2015.2/CLR4.0/html/InfragisticsWPF4.Controls.Grids.XamSpreadsheet.v15.2~Infragistics.Controls.Grids.SpreadsheetCommandType.html
    Let me know if you have any other questions.

Reply Children
No Data