Main Topics
Browse All Topics
Hyper-V Network Card not workingHyper-v Network Card not working There are two common mistakes that people make when they setup a Hyper-V VM. First problem is that they don't install the integration components before they start troubleshooting problems with the Hyper-V VM fu Views: 18598Comments: 2 |
Using the Dictionary Class in VBAIntroduction Perhaps more familiar to developers who primarily use VBScript than to developers who tend to work only with Microsoft Office and Visual Basic for Applications (VBA), the Dictionary is a powerful and versatile class, and is useful Views: 15784Comments: 26 |
Median, Mode, Skewness, and Kurtosis in MS Accessby Patrick G. Matthews Introduction Like other database applications, Access provides support for computing basic descriptive statistics for a data set, offering such aggregate functions as Count, Sum, Min, Max, standard deviation and variance Views: 15728Comments: 23 |
Extending Outlook Rules via ScriptingScenario. Outlook rules are a great way to automate message processing. Using rules you can organize your messages, forward or reply to messages automatically, display custom message alerts, set reminders, and more. Unfortunately, rules have two Views: 15193Comments: 2 |
Outlook 2007 error in EMSMDB32.DLL when performing searchToday I have discovered the solution to a problem that began yesterday. Some of our client computers running Office Outlook 2007 (connecting to Exchange 2007) started crashing, when performing a search on any folder. The error would crash Outl Views: 13921Comments: 26 |
Calculating Distinct Counts in Accessby Patrick G. Matthews All major SQL dialects allow for a Count aggregate function, and Access's native Jet SQL is no exception. As in other database platforms, Access's Count() (as well as the "domain aggregate" DCount()) function returns t Views: 13412Comments: 18 |
How to Split a String with Multiple Delimiters in VBAThis Article This Article discusses tips for extending the functionality of the VB 6.0 and VBA Split() function, described here. We will introduce a quick and easy enhancement function, as well as a more extensive function which provides some much Views: 12973Comments: 35 |
A VBA Progress Bar for Excel and Other Microsoft Apps.Keeping the user informed is important If you have written some VBA code for Excel (or Word, or Access), and it takes a long time to execute, it is important to keep the user informed that the code is progressing. Psychologically, it can also have Views: 12894Comments: 19 |
Six Reasons Why Your VLOOKUP or HLOOKUP Formula Does Not Workby Patrick G. Matthews Introduction VLOOKUP is a tremendously useful function that allows you to "fetch" data from a specified rectangular range (the "lookup table"); this range can be on the same worksheet, a different worksheet in the sa Views: 12724Comments: 35 |
Automatically Printing/Saving Emails/Attachments in OutlookAutomatically Printing/Saving Emails/Attachments in Outlook Issue. One of the more frequent Outlook questions I see here on EE is "How can I automatically save or print an email and/or its attachments?" There are a number of variations to the b Views: 11997Comments: 50 |
Importing and Exporting Outlook 2007 CategoriesIssue. "How do I copy my categories to another computer?" and "How can I share a set of categories with a group?" are two of the more frequent category related questions I see here on Experts-Exchange. The answer is that Microsoft, unfortunately, Views: 11850Comments: 34 |
Playing with Time Conversion in ExcelLot of times in Excel we have to do quick time conversion that is...The time is given in Time format which is -->12:00:00 and we need to convert it into a number format that is -->12 A quick multipication of same by 24 will convert it to the Views: 10393Comments: 7 |
How to Mimic the T-SQL IsNumeric() Function in MySQLIn database programming, custom sort order seems to be necessary quite often, at least in my experience and time here at EE. Within the realm of custom sorting is the sorting of numbers and text independently (i.e., treating the numbers as number Views: 9737Comments: 28 |
Excel Tips & Tricks: The Camera ToolIntroduction Back in the years when I was teaching Excel 4 (yes, version 4, when .xls meant "worksheet" and not "workbook"), I had a couple of recreational exercises to use when the class was getting tired, after the afternoon break. One of them Views: 9723Comments: 55 |
Internet Explorer 9 Crash Restart LoopProblem I downloaded the Microsoft Internet Explorer 9 Beta, today, to give it a test drive and maybe write a review for the site, and it failed miserably and got stuck in a crash restart loop. The error message given is as illustrated below i Views: 9056Comments: 20 |
Expanding a Hierarchical Data StructureIntroduction One of the earliest concepts learned by database developers is parent-child (one-to-many) relationships. These relationships are integral in countless database applications. A purchase request containing one or more items ordered i Views: 8701Comments: 42 |
Simple Linear Regression in MS Accessby Patrick G. Matthews Introduction Linear regression analysis is a common statistical technique used to infer the possible relationships between a dependent variable and one or more independent variables. While Microsoft Access does not Views: 8189Comments: 13 |
Never Again Forget to Add that Attachment to your Outlook EmailIssue. Have you ever sent an email and forgotten to add the attachment? How embarrassing!!!! Here's a short Outlook macro to make sure this never happens again. As I’ve gotten older I’ve noticed that my memory and attention to detail have both Views: 8136Comments: 56 |
Word 2010 Review: Improving Collaboration and NavigationWhen I first made the jump from Microsoft Word 97 to Word 2007, it was just that … a giant leap. Going a decade between software updates is as dumb as it sounds, but when you’re used to a solid word processor like Word 97, you tend to stick with Views: 8130Comments: 7 |
"Domain Aggregate" for Concatenating Values by Group in Microsoft Accessby Patrick G. Matthews A common request in the various database zones at Experts Exchange involves returning a concatenated list of the various items in ColumnB for each distinct value in ColumnA from a particular table or query. For example Views: 7941Comments: 21 |
Avoiding Blank Subject Lines in OutlookIssue. Have you ever received an email with a blank subject line? Have you ever clicked "Send" only to realize that you forgot to add a subject? It’s frustrating to receive a message with no subject. You’ve no idea what the message is about, how Views: 7725Comments: 22 |
Eliminating duplicate data with Duplicate Master V2Introduction - The Problem Many people use or inherit spreadsheets built with database functionality. A frequent problem with such spreadsheets is duplicate data, either of entire records, or in specific fields. Duplicate data in your spreadshe Views: 7573Comments: 100 |
Using Variant Arrays in Excel VBA for Large Scale Data ManipulationIntroduction One of the most common VBA techniques is the use of a For .. Next loop to iterate through all the cells in a range. The syntax is straightforward and easily applied. Unfortunately, for large data sets it can also be the programming e Views: 7543Comments: 34 |
Option to open excel 2007 documents in a new instanceProblems we all know excel has Many people are tired of the way excel workbooks are affected by every other workbook you have opened. When you calculate one, they all calculate. Excel acts as though they are inter-dependent when they really aren't Views: 7041Comments: 8 |
Export or Strip Email Attachments in OutlookIntro I've seen a few requests floating around for scripts that will export or strip attachments out of emails, and so far have never encountered any high quality implementations of this feature, so I created this method with a little flavor. Whe Views: 6897Comments: 29 |
Analytical SQL : Where do you rank?"Top 10 customers by salesperson" sound familiar? Yes! I would expect so, and am sure there are a number of other great business analyses with a similar principle now flowing through your mind. So, how do you query this data in your SQL system? Views: 6882Comments: 27 |
How to dynamically control form List Box controls in Excel.What is a Form List Box? (skip if you know this) The forms List Box is the alternative to the ActiveX list box. If you are using excel 2007, you first make sure you have a developer tab (click the Orb)->"Excel Options"->Popular->"Show Developer tab Views: 6537Comments: 20 |
SharePoint permissions reporting toolRecently Microsoft has released the Fourth Release of the Microsoft SharePoint Administration Toolkit. It was announced on the SharePoint team blog. A very interesting part of this toolkit is a permission reporting tool. I think that every admin Views: 6474Comments: 6 |
Covariance and Correlation in MS Accessby Patrick G. Matthews Introduction Access provides functions for computing several common descriptive aggregate statistics for column data, offering such aggregate functions as Count, Sum, Min, Max, standard deviation and variance (StDev, Views: 6419Comments: 23 |
Automating Out of Office in OutlookOutlook’s “Out of Office” (OOO) feature is a wonderful tool if your mailbox is hosted on Exchange. When it’s turned on, your Exchange server sends a reply to anyone who emails you, letting them know that you are out of the office. There’s th Views: 6375Comments: 10 |
Dlookup and the Domain FunctionsApplies to: All versions of Access Skill Level:Beginner One of the common questions we see in the Access zone is how to get a value from a table. One way to do that is with a set of built-in functions called Domain functions. These functio Views: 6183Comments: 17 |
Understanding Null, Empty, Blank, #N/A, ZLS, Nothing, MissingIf you are on this page looking only for ways to handle Null values or Missing parameters, you can scroll down to the appropriate section, and skip the rest. Each section should be intelligible when read out of sequence. Introduction I hav Views: 6094Comments: 17 |
Allowing Access to the Windows Clipboard Do you ever get that "Do you want to allow this web page to access your clipboard?" pop-up message in Windows Explorer?
This happens when a script on the page executes a sequence like:
var s="new clipboard text!";
window.clipboardData.setDa Views: 6079Comments: 6 |
How to create and deploy a custom field type within SharepointThis example will use a custom field type to create a drop down list populated from a Sharepoint List. There are four main components to building a custom field& " Field Class* This must inherit from an existing SPField class. e.g. SPFieldText Views: 5931Comments: 3 |
Fixed Rate Loan Amortization Schedule with Optional Extra Principal PaymentsIntroduction Using Microsoft Excel to create a fixed rate loan amortization schedule is a very common task: probably just about every skilled Excel user who has ever taken out a mortgage has either created such a schedule him/herself or downloade Views: 5921Comments: 28 |
Open multiple mailboxes on different Exchange Servers with Outlook 2010As an IT Consultant I have the need to have access to multiple mailboxes on different Exchange Servers remote from my working location. In previous versions of Outlook this meant I had to either use different outlook profiles or settle for using Views: 5798Comments: 8 |
Installing Ubuntu 10.04 on Windows 2008 R2 Hyper-VThe purpose of this article is to help people install Ubuntu 10.04 on Windows 2008 R2 Hyper-V. Some of the issues many people face in installing Ubuntu 10.0.4 on Hyper-V are the following: 1. No Network Connection 2. No Mouse functionality wh Views: 5537Comments: 4 |
dlmille
163,672
Guru
2,000 points yesterday
Profilecapricorn1
89,359
Master
0 points yesterday
Profileapache09
87,412
Master
0 points yesterday
Profilembizup
69,208
Master
0 points yesterday
Profilessaqibh
65,579
Master
0 points yesterday
Profilematthewspatrick
64,100
Master
3,200 points yesterday
Profileboag2000
61,108
Master
1,000 points yesterday
ProfileGrahamSkan
56,819
Master
0 points yesterday
Profileimnorie
56,450
Master
1,500 points yesterday
Profileteylyn
50,836
Master
1,000 points yesterday
Profilefyed
44,316
0 points yesterday
Profileals315
44,273
0 points yesterday
Profilerorya
42,460
0 points yesterday
Profilebarryhoudini
39,468
0 points yesterday
Profileve3ofa
37,875
0 points yesterday
Profilethinkpads_user
37,182
0 points yesterday
ProfileDatabaseMX
35,868
1,000 points yesterday
ProfileChinmay_Patel
35,526
0 points yesterday
Profilejcimarron
34,114
0 points yesterday
Profileaikimark
33,886
0 points yesterday
Profilechris_bottomley
33,600
0 points yesterday
Profileferidun
33,100
0 points yesterday
Profilepeter57r
27,848
0 points yesterday
Profiledemazter
26,272
0 points yesterday
ProfileNeilsr
25,636
0 points yesterday
Profile