![Excel advanced filters Excel advanced filters](/images/connexion/advancedfilter.png)
Advanced Filters have a couple of advantages over regular filters:
- The filter criteria is contained on your worksheet so you can easily see what filters are applied. Whereas with AutoFilter you have to click on the down arrow to see what filters have been applied.
- Advanced Filters allow you to extract your filtered data to another place in your worksheet/workbook or extract a unique list of records.
Their downside is it's not as obvious that your data is filtered since they don't display drop-down lists for the column headers like regular filters.
Full article: Excel advanced filters
![My ten principles for Excel good practice My ten principles for Excel good practice](/images/connexion/top10goodpractice.jpg)
I have been asked to share my personal principles for Excel good practice - and I thought you might be interested to see them too. My ten Excel principles...
Full article: My ten principles for Excel good practice
The easiest and highest impact way to implement coding standards is to adopt a disciplined way of naming VBA variables. What follows is SpreadSheet SuperStar's variable naming rules:
- Use
Dim
statement to declare all VBA variables. - Use
Option Explicit
in all VBA modules. - Assign every VBA variable a data type.
- Name VBA variables with descriptive names.
- Use data type prefixes for each VBA variable.
- One variable declaration per line of code.
- Declare all variables at the top of each subroutine.
- Style points: Order variables declarations by size.
Full article: Not available
![5 underutilized Excel features to take advantage of 5 underutilized Excel features to take advantage of](/images/connexion/whatif.png)
The following are the top 5 Excel features I use on a constant basis to get the most out of my data:
- What-If analysis.
- Sparklines.
- Conditional formatting.
- Format as table.
- PivotTables.
Full article: 5 underutilized Excel features to take advantage of
![Spreadsheet controls in Office 2013 Spreadsheet controls in Office 2013](/images/connexion/excel2013controls.png)
In Office 2013 there are now 5 features designed to help you manage the use of Excel spreadsheets, including 2 new server-based applications:
- Audit and Control Management Server (new).
- Discovery and Risk Assessment (new).
- Spreadsheet Inquire.
- Spreadsheet Compare.
- Database Compare.
Full article: Not available
![Use conditional formatting to identify unlocked cells Use conditional formatting to identify unlocked cells](/images/connexion/highlightunlocked.png)
In this article, I'll demonstrate how you can use conditional formatting to identify all unlocked cells within a worksheet range. This can serve both as an input aid, so that users know which cells they can affect, as well as an auditing tool, so that you know which cells are protected and which aren't.
Full article: Use conditional formatting to identify unlocked cells
![Excel INDEX function tutorial (array) Excel INDEX function tutorial (array)](/images/connexion/indexsuperstar.png)
The Excel INDEX
function returns the value of a cell. The INDEX
function is often confused with the Excel OFFSET
Function. The INDEX
function is part of a larger group of Excel lookup functions which includes MATCH
, VLOOKUP
and HLOOKUP
.
In this tutorial we will explore the INDEX
function and how it compares to the OFFSET
function and potential errors that can occur when using this function.
Full article: Not available
![How to use FREQUENCY function How to use FREQUENCY function](/images/connexion/frequencygdh.png)
FREQUENCY(data_array, bins_array)
Calculates how often values occur within a range of values and then returns a vertical array of numbers having one more element than the bins_array:
data_array
- is an array of or reference to a set of values for which you want to count frequencies.bins_array
- is an array of or reference to intervals into which you want to group the values in thedata_array
.
Full article: How to use FREQUENCY function
![Resolving #VALUE! errors in Microsoft Excel Resolving #VALUE! errors in Microsoft Excel](/images/connexion/valueerror.png)
It's a frustrating experience when a simple Excel spreadsheet displays #VALUE!
in a worksheet cell rather than the expected result. Many times the problem is obvious, in that you've tried to do arithmetic using text and numbers, but sometimes the culprit is harder to track down.
Full article: Not available