Search RAD Excel
-
-
Recent Posts
- Workbook_Open vs. Auto_Open
- My First Custom Ribbon Using Excel-DNA And Visual Studio
- Get Property Syntax Bug [VBA]
- My First C#.Net UDF Using Excel-DNA And Visual Studio
- Who Has My Workbook Open? [VBA]
- Excel Development Roadmap – Where Next?
- UK Has Its Pie And Eats It
- Getting A Handle On Userforms [VBA]
- Unwanted Worksheet Events? Maybe SpecialCells() Is To Blame!
- #REF! Means Your INDIRECT() Formula May Be Slow As A Dog
- VBA: Understanding ByVal In An ActiveX Textbox KeyPress Event Handler
- Minimize And Maximize Userform Across 32-bit and 64-bit Environments
- Stop MSForms.Frame Scrollbars From Resetting On Focus
- Deceptive Appearances: MSForms Textboxes And Comboboxes
- Error Accessing The System Registry
Recent Comments
- Colin Legg on Self Extending UDFs – Part 1
- KH on Self Extending UDFs – Part 1
- Colin Legg on Self Extending UDFs – Part 1
- KH on Self Extending UDFs – Part 1
- John on How To Calculate The Next IMM Date
- Diederik de Jonge on VBA: Determine All Precedent Cells – A Nice Example Of Recursion
- Alan on Excel Macro to Find and Calculate Precedents
- Lucho on My First Custom Ribbon Using Excel-DNA And Visual Studio
- Shefali Dubli on Using WorksheetFunction.VLookUp To Look Up A Date In VBA
- excel - Ensemble ArrayFormula à de nombreuses cellules Excel à l'aide de VBA on Working With Range.FormulaArray In VBA
- Scott J. on Is Your Cell Blank Or Empty?
- highandwild22 on Stop MSForms.Frame Scrollbars From Resetting On Focus
- Andrew Lockhart on Naughty Data Validation Lists
- BaconBucket on Determine the Office Edition in VBA
- Greg on How To Calculate The Next IMM Date
Categories
- .Net (8)
- General (5)
- Microsoft Office (80)
- Microsoft Excel (80)
- Microsoft SQL Server (4)
- Off Topic (1)
- Windows (1)
Archives
- December 2016 (1)
- November 2016 (1)
- October 2016 (1)
- September 2016 (1)
- July 2016 (2)
- June 2016 (1)
- May 2016 (1)
- March 2016 (1)
- February 2016 (1)
- December 2015 (1)
- October 2015 (1)
- September 2015 (1)
- August 2015 (2)
- July 2015 (1)
- May 2015 (1)
- April 2015 (2)
- March 2015 (1)
- February 2015 (1)
- January 2015 (1)
- December 2014 (2)
- October 2014 (1)
- September 2014 (1)
- August 2014 (2)
- July 2014 (1)
- June 2014 (2)
- May 2014 (3)
- April 2014 (1)
- March 2014 (1)
- February 2014 (3)
- January 2014 (2)
- December 2013 (1)
- November 2013 (1)
- October 2013 (1)
- September 2013 (2)
- July 2013 (1)
- June 2013 (4)
- May 2013 (1)
- April 2013 (1)
- March 2013 (2)
- February 2013 (2)
- January 2013 (2)
- December 2012 (2)
- November 2012 (2)
- October 2012 (3)
- September 2012 (1)
- August 2012 (4)
- July 2012 (3)
- June 2012 (1)
- May 2012 (3)
- April 2012 (3)
- March 2012 (6)
- February 2012 (2)
- January 2012 (1)
- December 2011 (2)
Author Archives: Colin Legg
Workbook_Open vs. Auto_Open
I’ve seen it written that Auto_Open() was superseded by Workbook_Open() and that it is therefore redundant and only still available for backward compatibility. In fact, there are subtle differences between the two which means that, in my opinion, Auto_Open() remains a … Continue reading
My First Custom Ribbon Using Excel-DNA And Visual Studio
For the next instalment in this “getting started with Excel-DNA for VBA’ers ” mini-series I’m going to have a look at customisation of the Office ribbon. The end goal of this post is very simple: a custom tab with a button which shows … Continue reading
Get Property Syntax Bug [VBA]
I just saw this posted by @RubberduckVBA on Twitter and couldn’t resist sharing it on here. Did you know that this VBA code will compile and run correctly? And, perhaps even scarier, so will these (and variations thereof):
My First C#.Net UDF Using Excel-DNA And Visual Studio
Having recently blogged about the importance of broadening my programming horizon, I felt it was high time I put together a step-by-step guide on how to create an Excel UDF in Visual Studio using Excel-DNA. In this post I’m specifically targeting … Continue reading
Posted in Excel-DNA, Microsoft Excel, Visual C#
Tagged Excel-DNA, The file format and extension don't match, UDF, Volatile, XLL
6 Comments
Who Has My Workbook Open? [VBA]
A while back I posted some C# code which would find out if someone is locking an Excel workbook and identify who they are. At the time I didn’t post a VBA equivalent because I had linked to a VBA … Continue reading
Posted in Microsoft Excel
3 Comments
Excel Development Roadmap – Where Next?
The developer tool suite offered by Microsoft for Excel is currently a set of three complimentary technologies: Visual Studio Tools for Office (Dot Net) Apps for Office (Javascript) Visual Basic For Applications The VBA language is an interesting one. Often referred to … Continue reading
UK Has Its Pie And Eats It
Here are the Brexit vote results displayed using the doughnut chart style which seems to have been popular on some of the media websites. And here are exactly the same numbers displayed using our old favourite: the 3D pie chart.
Posted in Microsoft Excel
5 Comments
Getting A Handle On Userforms [VBA]
In a previous post I wrote about how to add minimize and maximize buttons to a VBA userform. A necessary part of that process is to get the handle to the userform’s window, but the focus of that post was … Continue reading