excel-2010

Index/Match- Lookup 2nd Value if 1st Value is Blank

我是研究僧i 提交于 2020-01-02 09:59:33
问题 I was hoping to get some assistance in writing a formula in excel. I have a table that contains a list of employees and their cell phone number. However, the table is structured in such a way that there is a number of blank and duplicate rows. Essentially, I am hoping to create a new table without any duplicates and blanks by performing a lookup on the respective cell phone numbers. The problem is, when I do a standard Index/Match formula, the formula will grab just the first lookup value,

Index/Match- Lookup 2nd Value if 1st Value is Blank

断了今生、忘了曾经 提交于 2020-01-02 09:59:06
问题 I was hoping to get some assistance in writing a formula in excel. I have a table that contains a list of employees and their cell phone number. However, the table is structured in such a way that there is a number of blank and duplicate rows. Essentially, I am hoping to create a new table without any duplicates and blanks by performing a lookup on the respective cell phone numbers. The problem is, when I do a standard Index/Match formula, the formula will grab just the first lookup value,

saving csv from excel loses decimal point precision

冷暖自知 提交于 2020-01-02 05:59:12
问题 If I create a simple .csv file containing something like this: 01/22/2013,3.14159265358979323846264338 and proceed to open it up in excel, the cell will show a rounded number i.e. 3.141592654 and the formula bar will show the whole value. However if I make some changes and save the csv file, or just save the original file as a different csv file, the file will only contain the rounded number 3.141592654 , causing me to lose some decimal point precision. I am writing these files out via a vba

Apply Conditional Formatting based on multiple conditions

两盒软妹~` 提交于 2020-01-02 03:37:25
问题 I'm attempting to highlight a cell based on two conditions, if the Work Type is equal to (blank) , and if the cell itself is greater than 15%, then I want the cell under % Total Work highlighted. My sheet looks like this: The only way I can think to do this is using the AND function, something like =AND($B:$B="(blank)";$D:$D>.15) , but this produces an error. I'm very new to conditional formatting, so I may be missing something obvious. I'm using Excel 2010. 回答1: You have to apply the formula

VBA code to add a basic ribbon in Excel 2010?

女生的网名这么多〃 提交于 2020-01-01 17:48:39
问题 I have used products to write ribbons for Excel in C# (addin express) but I need to know how to produce a ribbon using vba. Would someone be able to provide me with some code that inserts an additional ribbon into the toolbar for this? By ribbon I mean where it says "Formulas", "Data", "Review" etc 回答1: You can customize the ribbon in Excel using a combination of XML and VBA. A good starting-point for customizing the ribbon: http://msdn.microsoft.com/en-us/library/office/aa338202%28v=office

Sum() Across Dynamic Number of Sheets

那年仲夏 提交于 2020-01-01 16:55:47
问题 Hello all and thanks for your help ahead of time, I have an excel sheet that is solely to take the summation of multiple sheets. Best and most simply put, the formula is something like =sum(Sheet1!A1,Sheet2!A1,Sheet3!A1,Sheet4!A1) . There are a few issues that complicate matters though. First off all, I do not know the number or order of the sheets to sum, nor do I know their name. This formula will be copied into ~150 other cells, so I need the summation to be dynamic instead of physically

Sum() Across Dynamic Number of Sheets

最后都变了- 提交于 2020-01-01 16:54:06
问题 Hello all and thanks for your help ahead of time, I have an excel sheet that is solely to take the summation of multiple sheets. Best and most simply put, the formula is something like =sum(Sheet1!A1,Sheet2!A1,Sheet3!A1,Sheet4!A1) . There are a few issues that complicate matters though. First off all, I do not know the number or order of the sheets to sum, nor do I know their name. This formula will be copied into ~150 other cells, so I need the summation to be dynamic instead of physically

Excel VBA runtime error 1004 only with names that begin with 'c'

試著忘記壹切 提交于 2020-01-01 16:45:55
问题 That's right. If I change the 'C' in 'Chart_Series_W_Gain_AAPL' in the following code to any other letter the code works. Otherwise it throws an Error 1004 at the Series.Formula assignment. In fact, if I use any random name that begins with 'c' the code fails but not otherwise. I've tried closing Excel and reopening, but same issue. I came across this because I had been naming my chart series defined names beginning with the name of the chart, but then I decided that was confusing and I

Excel ActiveX Listbox not enabled on file open

心不动则不痛 提交于 2020-01-01 08:38:42
问题 I am trying to figure out a bizarre situation. I have a workbook with many sheets. On one sheet, I have one ActiveX listbox (CTOverview.Listbox1). On a second sheet, I have a total of three listboxes (CTSelected.Listbox1 thru Listbox3). I am using a query to populate Listbox1 on both sheets with the same data. The code for this is below: strSQL = "Select Distinct [Region] From [UniqueCTList$] Order by [Region]" closeRS OpenDB ' initialize listboxes CTSelect.ListBox1.Clear CTSelect.ListBox2

Excel 2010: Replace a table by an external connection without impacting other sheets

♀尐吖头ヾ 提交于 2020-01-01 06:29:20
问题 I have a big workbook with a lot of data. In one sheet I have a table. This table is used for many Pivot tables used in other sheets, which are also used in other sheets. The data for the table was copied manually regularly. I now have a external connection to import automatically the data but I'd like to avoid impacting other sheets. How can I use my external connection without losing my table? Thank you for your help 回答1: This might be a helpful workaround. I have successfully done this but