Pages

Search

Excel Help Forum - Excel Programming / VBA / Macros: have a drop down list with associated values difference to be calculated

Feed2Mail notification - new post on Excel Help Forum - Excel Programming / VBA / Macros
have a drop down list with associated values difference to be calculated
hi all! in the attached file you will find in cell K1 a drop down list of all possible start values and in cell L1 end values. i want the program to be able to have someone choose a start value say for instance A.3.3 ( which corresponds to Line 13's data.) and a stop value of A.6.1 (line 22's...

Excel Help Forum - Excel General: R1C1 reference style default checked - driving me crazy

Feed2Mail notification - new post on Excel Help Forum - Excel General
R1C1 reference style default checked - driving me crazy
Does anyone know how to permanently uncheck that option? If you click the MS button, then "Excel Options", then ""Formulas", it is the first option in the "Working with formulas" section. This being checked makes your alpha columns display as numerals. Not a big deal until you try to copy a...

Excel IT Pro Discussions Forum: Combine multiple Excel workbooks and export to a single html page

Feed2Mail notification - new post on Excel IT Pro Discussions Forum
Combine multiple Excel workbooks and export to a single html page

I'm trying to find a new solution in Excel 2010 from 2003 that allows the ability to take multiple Excel documents with only one page each, auto select the data for the print area, and publish to a single HTML file.  This needs to be done in a chronological order by the date of the file.  I'm not sure if this can be done as a script within Excel or if there's a third party program which can help with this capability.

I'm not an Excel guru and could use your help.

Thanks!

Excel IT Pro Discussions Forum: I need a macro that does this (Two excel sheets shown)

Feed2Mail notification - new post on Excel IT Pro Discussions Forum
I need a macro that does this (Two excel sheets shown)

My macro worked before to do what I needed to do but for some reason it either was wrong before or I just thought it was working. Anyway here is an example of two spreadsheets, the one on the left is prior to the macro and the one on the right is after the macro. The idea is simple and below the examples I will explain my logic and show my code. Please let me know if anyone can help asap I am getting confused.

As you should be able to see from my example my macro reads out the value in Column C "WP". It then compares it to the value above in Column C and when that value changes the value in column F "Name" will copy the name of the task that started the change. So MGMT overwrote Task3 and Task because the WP value changed. It also should read the offset value and keep copying down the task name until the "WP" changes again.

Here is my code I have been trying to use. (It runs from a project user-form but it is excel mostly)

Private Sub Test()      Dim xlapp As Excel.Application   Dim NC As String, tn As String   Dim xlSheet As Worksheet   Dim c As Range      Set xlapp = GetObject(, "Excel.Application")   Set xlSheet = xlapp.ActiveWorkbook.Worksheets(1)   NC = xlSheet.UsedRange.Rows.Count   For Each c In xlSheet.Range("A2:A" & NC).Cells       Debug.Print c.Value       If c.Offset(-1, 2).Value <> "" Then           tn = c.Offset(0, 5).Value       Else           c.Offset(0, 5) = tn       End If   Next c   End Sub   

Excel Help Forum - Excel Formulas & Functions: If worksheet 1 cell A1 contains one the following N/S, OP, AFT 1 display a value

Feed2Mail notification - new post on Excel Help Forum - Excel Formulas & Functions
If worksheet 1 cell A1 contains one the following N/S, OP, AFT 1 display a value
Hi Please help me..... I am looking for a solution to a problem that I have spent a week trying to figure out and I am struggling to find the solution. If worksheet 1 cell A1 contains one the following N/S, OP, AFT. N/S I need to display number value 3 in worksheet 2 cell A1

Excel Help Forum - Excel Programming / VBA / Macros: Macro to separate out raw data

Feed2Mail notification - new post on Excel Help Forum - Excel Programming / VBA / Macros
Macro to separate out raw data
Very difficult but any help or direction would be GREATLY appreciated. Here is what I am trying to accomplish: I am trying to write a macro that will separate out the 'Data' tab in the attached document. It will look in Column 'D' from the 'Data' tab and match the name with the worksheet. ...

Excel Help Forum - Excel General: Replace missing values

Feed2Mail notification - new post on Excel Help Forum - Excel General
Replace missing values
Hi. Is there a way to find-replace missing values with a "." or something of that sort? Can't seem to figure out. Thanks.