Search Results

2
votes
2answers
343 views

excel vba: functions as arguments of functions

There is no special type for functions, therefore it is hard for me to see, how to add functions as arguments to functions in excel vba. What I try to accomplish is something like this: …
0
votes
2answers
853 views

excel vba for each loop takes 2 steps at once

I want to process every element of a for-loop. Taking this code, why is just every second element processed? For Each row In ws.Rows If IsEmpty(row.Cells(row.row, 1)) Then …
0
votes
1answer
184 views

Calling Excel Solver VBA from another worksheet

After creating a new workbook, I am trying to solve a newly created worksheet of this workbook in VBA. Despite of activating the new worksheet, Solver attempts to solve the worksheet, where the ma …
1
vote

Calling Excel Solver VBA from another worksheet

I just had to reopen the workbook. Workbooks.Open "foo.xls" wb.Activate ws.Activate …