Search Results

1
vote
4answers
854 views

Excel VBA: Alternative IDE

I am using excel 2003 and the build in IDE for programming VBA, but a lot of things bug me. Obviously, the build in nature of the VBA IDE is a big pro. Is there a (free?) alternative out there? …
3
votes

Excel: list ranges targeted by INDIRECT formulas

You could iterate over the entire Workbook using vba (i've included the code from @PabloG and @euro-micelli ): Sub iterateOverWorkbook() For Each i In ThisWorkbook.Worksheets Se …
0
votes

Excel: list ranges targeted by INDIRECT formulas

Unfortunately, the arguments of INDIRECT are usually more complex than that. Here's an actual formula from one of the sheets, not the most complex formula we have: …
4
votes

Hiding data points in Excel line charts

As a general tip: If you know how to do something in excel, but don't know how to do it in VBA you could just record a macro and look at the recorded VBA-code (works at least most of the time) …
0
votes

Excel formula to refrence ‘CELL TO THE LEFT’

You could use a VBA script that changes the conditional formatting of a selection (you might have to adjust the condition & formatting accordingly): For Each i In Selection i.Fo …
0
votes

Show Cell Range on UserForm; then update

I am not quite shure what you are looking for, but you could insert a second sheet and use it as a "form". An other way could be a dialog box with an input field. Either way, you present th …
0
votes

Excel formula to get ranking position

If your C-column is sorted, you can check whether the current row is equal to your last row. If not, use the current row number as the ranking-position, otherwise use the value from above (value fo …