spreadsheet

Coldfusion: cfspreadsheet reading date incorrectly

徘徊边缘 提交于 2019-12-13 02:56:27
问题 Im using cfspreadsheet to read data from spreadsheets inside one of my applications. I've had a great deal of difficulty dealing with date columns. If I format the cell as date english (NZ) it displays right in the spreadsheet, but when I try to upload it switched the day and month. But If I change the format to a custom "dd/mm/yyyy" format it will upload without a problem. Why would using the default date formats within the spreadsheet mess up the format when a custom one doesn't? Is there a

Google Spreadsheets redirect

浪子不回头ぞ 提交于 2019-12-13 02:49:52
问题 Is it possible to redirect a URL in Google Spreadsheets script editor? I tried this, but it redirects before script is finished: <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(function() {$("#myiframe").load(window.location.replace('https://www.yahoo.es');}); </script> <iframe src="https://docs.google.com/a/ageinfo.es/spreadsheets/d/ID" width="760" height="700" frameborder="0" marginheight="0" marginwidth="0"> Loading..

Create Spreadsheet in .NET Compact Framework 3.5

血红的双手。 提交于 2019-12-13 02:13:03
问题 I hope this is not a repetitive question; I've searched on the site but I was not able to find anything. As the title say I would like to create/edit spreadsheet on a .NET Compact Framework project. On desktop project with the full size framework I use, with pleasure, ClosedXML but if I try to use this I get multiple errors so I'm searching for an alternative. I have found a commercial option (TMS Flexcel Studio for .NET) but I was wondering if there is something free to use. I know that I

how to set formula for cell data for (export to .xlsx) SheetJS js-xlsx: https://github.com/SheetJS/js-xlsx

心已入冬 提交于 2019-12-13 01:28:27
问题 Refering this example https://github.com/SheetJS/js-xlsx/blob/master/tests/write.js , it doesn't have any implementation for cell formula in xlsx spreadsheet I tried using cell.f = "=SUM(A1+B1)" for the cell C1 and cell.v as the summation value which was 3. But i didn't succeed. With the exported file, when opened in MS excel, the cell contained just the data and when selected, didn't show any formula which i assigned in f(x) field. Can someone post me a example which actually uses the

Excel IF function greater than x but less than y

余生颓废 提交于 2019-12-12 19:15:17
问题 I'm trying to arrange a column so that I can essentially "score" results.. I am looking for a formula that will go "If greater than 100000 but less than 110000 = 10, if greater than 90000 but less than 99999 = 9, etc etc.. can someone help? 回答1: We can use LOOKUP with ranges: =LOOKUP(A2,{0,90000,100000,110000,120000},{"0-89999","90000-99999","100000-109999","110000-119999","120000-Inf"}) I used lookup output as ranges to show what lookup is trying to do, in your case use below: =LOOKUP(A2,{0

Cannot read property “length” from undefined. (line 39, file “Code”)

て烟熏妆下的殇ゞ 提交于 2019-12-12 10:27:50
问题 I have written a google Apps Script which is used to filter the data and copy to another sheet. But, Yesterday it was working fine when I open today morning it was showing the error " Cannot read property length from Undefined " onEdt is a user defined function. Don't compare with onEdit() function onEdt( ) { var source = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("data"); var destination = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Crunch2"); var data = source

GoogleAPI/JSON: Retrieving data from spreadsheet?

白昼怎懂夜的黑 提交于 2019-12-12 05:29:25
问题 It turns out that I came up with my own solution: var data = {"version":"1.0","encoding":"UTF-8","feed":{"xmlns":"http://www.w3.org/2005/Atom","xmlns$openSearch":"http://a9.com/-/spec/opensearchrss/1.0/","xmlns$gs":"http://schemas.google.com/spreadsheets/2006","xmlns$batch":"http://schemas.google.com/gdata/batch","id":{"$t":"https://spreadsheets.google.com/feeds/cells/0ArzGbN1Jn061dFdJZ29VcWttZExoRXQ5TnZVX29xUlE/od6/public/basic"},"updated":{"$t":"2012-10-11T21:56:33.189Z"},"category":[{

Extract certain character set from cell Google Sheets

▼魔方 西西 提交于 2019-12-12 05:27:21
问题 I'm using IFTTT to keep track of my PayPayl invoices. Every time I get a new invoice email, a row is added to my Google Sheet. However, the entire message appears in one cell of my sheet. Is there a way to extract the Transaction ID and put it in a seperate cell? I have tried using =SPLIT, but no luck so far. Here a link to an example: https://goo.gl/w3oA9R 回答1: I left you an example on your sheet highlighted in green - the formula in case anyone else is wondering is this: =regexextract

How to have an SSRS report export to different excel sheets by each subreport?

两盒软妹~` 提交于 2019-12-12 03:37:57
问题 I have a report that contains several subreports that are very similar to the main/base report. I want each subreport's data to be housed on a separate tab when the user exports the report as Excel. I found a similar answer here, but it's not subreport-specific (I don't see a "PageBreak" property on Subreports, so the answer there doesn't seem to help me). How can I cause the exported Excel file to break into separate sheets on each subreport, and with the name of each subreport on its

Google sheets: Compare cell value in sheet 1 to cell values in a column of sheet 2

风格不统一 提交于 2019-12-12 03:29:37
问题 I have a 2 worksheets within a single file. Col A in each sheet has a list of websites. When I enter a new website to col A of sheet 1, I need it to compare the entry to the list on sheet 2. If the same website is listed on sheet 2, I need the new entry to be marked in some way - red background, bolded, whatever. What it should look like: Sheet 1: https://i.gyazo.com/07667520bc0f58a1dd2547405545eb5e.png Sheet 2: https://i.gyazo.com/a524832a9cb96e35bd2981e95e5c1edf.png Stackoverflow is listed