Mike Rosenblum
|
Registered User
|
I am a C# and Excel developer that focuses 100% of my efforts on Excel user interfaces for Wall Street data service providers. I spent 12 years on Wall Street as a research analyst, quantitative analyst, and director of research before switching over to Excel programming full-time 8 years ago. I have extensive experience building real-time, interactive financial systems using data service providers such as Bloomberg, Thomson Reuters, FactSet, Compustat, Zacks, CRSP, and others with Excel. Programming languages I have experience in include Visual Basic for Applications (VBA), Visual Basic 6.0, Visual Basic .NET, and more than 5 years experience in C#, which is currently my language of choice. I have also been awarded the Microsoft Visual Developer – Visual Basic MVP Award in 2007 and have also been a Microsoft Excel MVP since 2007. I enjoyed participating at the MVP Global Summit in March 2009 and I look forward to the next one in February 2010. If you wish to contact me, I can be emailed at mike_rosenblum(at)yahoo.com. |
|
7h |
accepted | How can I get the Range of filtered rows using Excel Interop? |
|
9h |
answered | How can I get the Range of filtered rows using Excel Interop? |
|
Dec 13 |
comment |
Excel replace value without losing formatting @Ben: regarding your reply "I haven't used C# .NET interop before, but that's something I'd probalby like to try at some point since the language is much more elegant to use." Beware of using C# with Excel, it truly is much, much LESS elegant when using Excel with C# 3.5; or below. C# 4.0, however, is just around the corner and should help a LOT. If you want to go this route, I would strongly recommend either waiting for C# 4.0 to be formally released, or use the Visual Studio 2010 beta, which is very, very stable at this point. |
|
Dec 12 |
comment |
Excel replace value without losing formatting Ben, what an increadible answer, holy cow. Xta, this approach would have no problem working using C#, although some of these property names might be prefixed with "get_" or "set_", but not many I'd expect. |
|
Dec 12 |
comment |
How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list? Hi Sean, glad it works for you. :-) Having mscoree.dll fully-qualified simply prevents the end-user from seeing an errant error message that can seem alarming, but actually can be safely ignored. If you follow the instructions above that begins at the point "The solution, again, is to add our own registry keys", you should be able to safely prevent this error message from appearing. |
|
Dec 10 |
comment |
Excel : Refreshing specific formulas in worksheet programmatically. Rashmi, glad it works for you. :-) (You should mark my answer as the correct one and/or vote my answer up, by the way.) |
|
Dec 10 |
comment |
monitoring a range of cells inside of excel 2007 with C#/VSTO No problem, glad it helped, Daniel. :-) |
|
Dec 7 |
accepted | monitoring a range of cells inside of excel 2007 with C#/VSTO |
|
Dec 7 |
revised |
monitoring a range of cells inside of excel 2007 with C#/VSTO added 123 characters in body; deleted 80 characters in body; added 1 characters in body |
|
Dec 7 |
answered | monitoring a range of cells inside of excel 2007 with C#/VSTO |
|
Nov 21 |
comment |
c# and excel automation - ending the running instance That source on VSTO actually does imply that it's only needed for VSTO because it explains why it is needed for VSTO -- a reason that does not exist when VSTO is not present. "However, thinking through it I do agree." Yes, fully understanding this comes from thinking through how garbage collection works when finalizers are involved: the object are not collected until the next garbage collection, but the finalizers are all called during the current garbage collection, which is what we care about with a RCW. 'GC.Collect' and 'GC.WaitForPendingFinalizers' only have to be called once. |
|
Oct 23 |
accepted | Excel 2007 UDF: how to add function description, argument help? |
|
Oct 20 |
revised |
Excel 2007 UDF: how to add function description, argument help? Correction regarding The 'Application.MacroOptions' method |
|
Oct 20 |
revised |
Excel 2007 UDF: how to add function description, argument help? Clarified comments wrt. the 'Excel.Application.MacroOptions' approach |
|
Oct 20 |
revised |
Excel 2007 UDF: how to add function description, argument help? Follow-up reply |
|
Oct 20 |
revised |
Excel 2007 UDF: how to add function description, argument help? deleted 3 characters in body |
|
Oct 20 |
revised |
Excel 2007 UDF: how to add function description, argument help? minor edits |
|
Oct 20 |
comment |
Excel 2007 UDF: how to add function description, argument help? Yes, that's about right, Hugh. See my detailed answer, above, though. |
|
Oct 20 |
answered | Excel 2007 UDF: how to add function description, argument help? |
|
Oct 14 |
revised |
Using late binding to get a specific instance of Excel in C# typo correction |
|
Oct 13 |
revised |
Using late binding to get a specific instance of Excel in C# deleted 16 characters in body |
|
Oct 13 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Ok, I've updated the answer again to explain the quirky behavior regarding optional Range parameters. It does seem to be a bug, at least when called from .NET. See below. (It's my 9th revision though, so it's now a "Community Wiki", lol. Ugh, if you work too hard on an answer, you lose ownership of it. Pretty odd...) |
|
Oct 13 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Added 5th installment: "Updated Answer Regarding Optional Range Parameters" |
|
Oct 13 |
answered | Using late binding to get a specific instance of Excel in C# |
|
Oct 13 |
accepted | Upload Excel File and display in Grid in asp.net MVC |
|
Oct 13 |
comment |
Excel : Refreshing specific formulas in worksheet programmatically. Rashmi, this forum does not work like other forums, which are usually a flowing list of responses. On Stack Overflow, you should edit your original answer to include any updates by making use of the 'edit' link. So you should use the 'edit' link to copy-paste in this post and then delete this post. This way there is only one place to read your original question and everyone else posts answers. Make sense? |
|
Oct 13 |
answered | Excel : Refreshing specific formulas in worksheet programmatically. |
|
Oct 12 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range I can duplicate all your issues 100%. The only one that I could not duplicate originally was the IIF issue, because this dealt with an internal implementaition that you had not disclosed in your question, so I couuld only test the method signatures. Once you reported the IIF issue, I could duplicate it and every other issue you've discussed here. |
|
Oct 12 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Hugh, I promise you that this absolutely is an issue with how Excel handles Range parameters, especially multiple-area Ranges and optional parameters. I agree that placing an optional non-Range parameter between the two optional Range parameters, should disambiguate, but Excel, unfortunately, still cannot interpret this and throws a #VALUE! error without calling your function. I'll elevate this to a discussion among the Excel MVPs, and hopefully someone is able to explain this more precisely. I'll reply back again if I get a more precise answer to this. |
|
Oct 12 |
answered | Upload Excel File and display in Grid in asp.net MVC |
|
Oct 12 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range I added the answer regarding Optional Range Parameters |
|
Oct 12 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Yes, my 2nd link was a typo, good picup. The link's title was right though, so partial credit, lol. I've now fixed it, above -- thanks for head's up. |
|
Oct 12 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Fixed a bad link. |
|
Oct 12 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range minor cleanup |
|
Oct 12 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Added answer regarding IIF |
|
Oct 11 |
comment |
Excel VBA Load Addins +1 on your own question! Kind of like cheating. ;-) Nice answer though, this definitely adds to the body of knowledge. |
|
Oct 11 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Minor Edits |
|
Oct 11 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Ok, no problem. I don't know, then, because I had no problems in my testing. Good luck tracking it down, hopefully my template can help you. |
|
Oct 10 |
comment |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Ok I took another look at this, Hugh. My updated answer is below. Hope this does the trick... |
|
Oct 10 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Updated Reply to suggest renaming the UDF |
|
Oct 7 |
revised |
VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range Grammar |
|
Oct 7 |
answered | VB.NET COM Server implementing Excel UDF not callable with optional Excel.Range |
|
Oct 7 |
comment |
Visual Studio find doesn’t find all possibilities Yeah, I don't know then. Clearly this is a very buggy feature, and it's a critical one, so I hope that they fix this at some point. When find/replace fails, it really is a disaster, especially because we might not have any way of knowing that it's failing. :-( |
|
Oct 6 |
comment |
open Excel workbook in C# This is really bizarre behavior; it really does sound like a corruption of some sort. I don't have any brilliant ideas here, but I've put in a few more ideas within the "Update" section, above. |
|
Oct 6 |
revised |
open Excel workbook in C# Added the update section.; deleted 33 characters in body |
|
Oct 5 |
answered | open Excel workbook in C# |
|
Oct 5 |
revised |
How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list? fixed one typo: "system director" --> "system directory". |
|
Oct 5 |
comment |
How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list? > "I already had the directions about writing installer functions from the sources he cited." I was pretty sure that you would have, but I wanted to lay the groundwork for anyone else that might come around and read this later. |
|
Oct 5 |
comment |
How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list? > "Oh, and that the installation function with attribute ComRegisterFunctionAttribute was not being called by the Microsoft installer." I know, right? I was floored by this. Why the setup project (and RegAsm with the /regfile switch) would ignore the register functions would appear to make no sense. There must be a reason for it, but it's very unexpected. |
|
Oct 5 |
accepted | How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list? |
