Kendo grid copy cells (datasource original values) to paste external - kendo-grid

I am able to copy the displayed cell's data to clip board. But how to copy the original data source values (4.2898) instead of Grid cell values( 4.28).
Here precision is applied on grid but original value is different in data source

Related

How can I add a new row maintaining formatting and formula in Google Sheets

I have a spreadsheet with specific formatting and a running total formula in column F.
Example
The sheet is currently bordered, but when it is full, I want to be able to click the red drawing on the right, and insert a new row above the totals that maintains the formatting and the formula.
I have tried using a macro on both relative and absolute settings but when i do so, it adds a new line in the same spot pushing other lines down and also copies any values in the cash in/out columns for the row above

MS Access Modern chart - plot series on secondary Y Axis

I have an MS Access Modern Chart in a Form. It contains two series of data; one with values up in the thousands, and the other with most values below 10. I therefore need to put one of those series onto a secondary Y axis on the chart.
Previously I have edited modern charts using the 'Chart settings' window that appears on the right when a modern chart is selected. However, in this case the Row source is entered by VBA (rather than basing the chart on a query) so no Series formatting options show in the chart settings window.
I cannot base the chart on a query as I need it to respond to changes in a combobox on the same form (the chart's row source is manipulated by VBA linked to On_change event of the combo box).
How do I move one of my chart's series to the secondary axis? Is there a chart property I've missed? Is it something I can do within the chart's Row Source property/sql?

Script for copy over values only via button

In this sheet, I have some boxes which calculate information, (Columns K:BO)
I have drawn a button next to each box (ADD LINE)
I need a script attached to the button that will transfer only the information in the coloured cells from each box across to a "Collection Box' in Column (DC:DK)
Each box calculates differently and sometimes I may not need information from all boxes at once hence a button for each one.
The goal is to be able to organise the information so I'm able to copy and paste the information the from the Collection Box (DC:DK) as needed so I don't have to painstakingly extract the information bit by bit
For Example...
I have made a box in Columns CF:CN which only mirrors the information I require.
Problem is when I'm not using certain rows the information gets hard to read because of the cluster,
As you might see I've tried to overcome this with basic cell formatting to highlight the information that I'm using at the time
Also the cells in columns CF:CN has cell references applied so I can change the output in columns as needed.
This would be ideal for me to keep.
I'm not sure on the boundaries of the script, but is there a way that when the information is copied to the collection box so it can still utilize the cell reference to change the information without me having to re-enter?
Here is Sheet
Information is in Update Price Tab
https://docs.google.com/spreadsheets/d/1UdYCqgKEGJeh4KajxQWfTCi-JRpQgGM7435Q_VwHIH8/edit?usp=sharing
a script for copy-over values only is:
function moveValuesOnly() { var ss = SpreadsheetApp.getActiveSpreadsheet();
var source = ss.getRange('Sheet1!A1');
source.copyTo(ss.getRange('Sheet1!B1'), {contentsOnly: true}); }
this particular one will copy values from Sheet1!A1 to Sheet1!B1 if attached to a button

How to achieve copy of a cell on drag and drop in DHTMLX grids?

After Googling, I found that dthmlx copy, one can enable copy in order to copy the rows on drag and drop. But I am looking for the same at the granularity of cells. On selecting and drag-n-drop of a cell, I want to copy its value to neighboring cells.
Is there a any way to do that in dhtmlx grids ?

setNumberFormats not working properly for percentages

I have a Google spreadsheet in which I want to copy values from one range into another range using a script. Copying the values isn't hard; I just use range.setValues(valuesToCopy). I also want to copy the formatting of the original range over to the new range. The problem is that whenever a percentage occurs, it doesn't apply the format correctly and always ends up off by a factor of 100. For example, if the original cell contains a value of 0.5545, the formatting of the cell turns it into 55.45% (which is what I want); however, when I copy the values to another range and apply the formatting with setNumberFormats(), it turns it into 0.5545%. How can I fix this?
EDIT: So, after a bit more fiddling around, it appears that my script properly copies the formatting over the first time, but on subsequent executions of the script, the formatting for the percentages gets messed up, as explained above.
To copy values, use the .copyTo method, and the format is preserved by default. For example,
rangeFrom.copyTo(rangeTo)