excel-2010

XMLHTTP.send request brings back “Nothing”

北城余情 提交于 2020-07-08 20:44:55
问题 I have a spreadsheet that has hundreds of links that point to a server (with authentication) that can be accessed via the web. I've been searching for a solution to a Link Checker in a spreadsheet that would tell me which links are broken and which are ok. By broken I mean that the website does not get called up at all. There are various solutions I have found around the web, none of which work for me. I'm boggled by this... One example that I've tried to use and figure out is re-posted below

XMLHTTP.send request brings back “Nothing”

老子叫甜甜 提交于 2020-07-08 20:44:19
问题 I have a spreadsheet that has hundreds of links that point to a server (with authentication) that can be accessed via the web. I've been searching for a solution to a Link Checker in a spreadsheet that would tell me which links are broken and which are ok. By broken I mean that the website does not get called up at all. There are various solutions I have found around the web, none of which work for me. I'm boggled by this... One example that I've tried to use and figure out is re-posted below

Open Excel 2010 file from Access 2010 VBA

a 夏天 提交于 2020-07-08 10:41:08
问题 I have both Excel 2003 and Excel 2010 on my machine. I'm using VBA in Access 2010 to open 2010 .xlsx files in Excel, but I notice they seem to be "opening" in Excell 2003 because that little "Converting data" dialog box pops up for a moment. Is there an easy way to be sure that Excel 2010 "opens" before the files open? Thanks, Ed 回答1: I don't have two versions of Excel on my computer so cannot test but I would think that the following would open the default Excel version, which I assume you

Pivot table cannot find difference between January current year to December of previous year. Excel 2010

假装没事ソ 提交于 2020-06-22 22:35:32
问题 I am weeks into making my first ever pivot tables, cant believe the power of them but have hit a snag I cannot overcome. I have a worksheet which has a column with raw data (manually imputed) Then I have another 2 columns that calculate the difference from the previous month and the % difference. This works fine. As you can see January 2015 is blank as the difference field is looking for the previous month and January is the first month. how can I get it to understand to look at December 2014

Macro button under customized ribbon tab tries to open old Excel file

末鹿安然 提交于 2020-06-22 13:10:06
问题 I created a custom ribbon tab on my Excel like Excel_app_v1.xlsm , and a button under this ribbon tab is connected to a macro. So when I click this button, the macro does some table importing applications. The first strange thing is that I created this ribbon tab and the button for only this Excel file, but the ribbon tab and the button appear in all other Excel files, even if the original Excel file Excel_app_v1.xlsm is not open. The second problem is that I created a second version of my

VBA Excel - IFERROR & VLOOKUP error

给你一囗甜甜゛ 提交于 2020-06-22 04:11:09
问题 I'm trying to create the equivalent of the =IFERROR(VLOOKUP(),-1) formula in excel VBA where the function would look up text in my data table and return the number in the 5th column if the text is in the table and -1 if it isn't. I've tested the above formula in excel and it gives me the desired result the problem is when I go to code it in VBA I keep getting the #VALUE! error if the text is not in the table. The code produces the desired number if the text is in the table. My code is as

How to find directional roots of a tree using Excel?

谁说我不能喝 提交于 2020-06-21 05:45:09
问题 I have the following question. Thank you for helping There is a tree with directional roots from bottom to top. How can find all connections (in pairs) by using Excel? For example, for column E-> for the child 12; 12-9, 12-6, 12-3 and 12-1, for the child 9; 9-6, 9-3 and 9-1, for the child 6; 6-3 and 6-1, for the child 3, 3-1 are the connections. What am I supposed to write to L2 and M2 to copy down? (it should not have blank or repeating connections) Thank you for helping. 回答1: Big Picture :

Excel: make a field required before saving, but let me save the blank form

旧时模样 提交于 2020-03-27 03:21:29
问题 Simply put, I want to make an Excel form that requires the user to fill in 5 cells, if even one isnt filled in then they cannot save the file. The issue is that with my current implementation I cant even save the blank document to be distributed to my coworkers. Is there a way to save once here and THEN have my VBA script work? below I have the code I've made for the form: Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Dim whatCell As String whatCell = "B3" If

OpenXML 2.0 Gets wrong cell value

社会主义新天地 提交于 2020-02-22 07:32:46
问题 I'm having a bit of a problem reading a value from an Excel 2010 worksheet. On a standard Excel 2010 worksheet I have a cell with the currency format with two decimal places and the value 1270,14 € . When I read this value on OpenXML 2.0 (C# code) I get 1270.1400000000001 instead of the original 1270.14 . The same happens with other values on any cell with the same formating. Get value from cell OpenXML code: private string GetCellValue(string column, int row) { column = column.ToUpper(); var

OpenXML 2.0 Gets wrong cell value

佐手、 提交于 2020-02-22 07:30:12
问题 I'm having a bit of a problem reading a value from an Excel 2010 worksheet. On a standard Excel 2010 worksheet I have a cell with the currency format with two decimal places and the value 1270,14 € . When I read this value on OpenXML 2.0 (C# code) I get 1270.1400000000001 instead of the original 1270.14 . The same happens with other values on any cell with the same formating. Get value from cell OpenXML code: private string GetCellValue(string column, int row) { column = column.ToUpper(); var