Excel Experts Update
Feb-2010 ExcelExperts.com Update
January had a slow start as everyone was on holiday, but the new year picked up quickly, and everyone came out wanting new spreadsheet systems.
Most encouraging this month has been the huge increase in total visitors up almost 40% on last month. Can we sustain this increase ?
Well... if we continue to offer good content, don't spam people, and bring Excel and VBA jobs to people who need them, of course we can !
Going forward, we are particularly interested in large complex projects. If you know of any, please refer ExcelExperts.com.
98. Excel Tips - Sort Columns
We all know how to sort rows, but did you also know that you can sort columns ?
Here's a screen shot of our data in Excel:
And here's what happens when we sort columns:
97. Excel Tips - Camera Tool
- This is an excellent time saving tip to get screen shots from Excel into outlook
- Use Camera Tool
I have the Camera Tool added to my custom toolbar. See this tip for more info on how to customise your toolbar.
Once you have the camera tool on your toolbar:
What can't be done in Excel ?
When I ask customers why they're not using Excel for more things, they often say to me: "Well, we'd like to do XXXX, but you can't do that in Excel can you ?"
Often, the answer is: "YES YOU CAN !"
So my question to all of you, is this: What do you think can't be done in Excel ?
Nick
96. Excel Tips - Keyboard Shortcut To Open Excel
There's no actual pre-defined Keyboard Shortcut To Open Excel, but you can set your own one up.
Here's how:
Go: Start => All Programs => Microsoft Office
Then Right click on the Excel entry, and select Properties
VBA Tips: Easy way to navigating with Range Object
One of the most common use object is the Range object.
Normally, to refer a cell, we simply put the cell address into the range such as Range("A1"). Now, what is the simpliest way to refer to other cell like B1?
There are many ways to use the range object to refer to the cell from your starting cell. I find the simpliest way is the following:
For example, if I want to refer to B1, I can simply write it as such:
Range("A1")(1,2).value or range("A1")(,2).value
This will return cell B1 value.
95. Excel Tips - Cause Of Big Excel Files
We've all been there happily developing our spreadsheet, and all of a sudden, the file size balloons.
Q: How did that happen ??!!
A: Most likely, it's uneven formatting that's causing the problem
Advanced Filter
With advanced filter in Excel using menu while trying to find out Unique, the limitation is that the destination range should be on the same sheet as the source. However, using VBA there is no such limitation. Using VBA the source and destination ranges in Advanced filter need not be on the same sheet.
Excel VBA Tip - Bypassing Clipboard while copying values or formula in Excel
In VBA, to Copy Values from range A1:A5 to B1 you will generally write
Sheet1.Range("A1:A5").Copy
Sheet1.Range("B1").PasteSpecial xlPasteValues
Another method:
write the following function in the code window
Sub CopyValues(rngSource As Range, rngTarget As Range)
rngTarget.Resize(rngSource.Rows.Count, rngSource.Columns.Count).Value = rngSource.Value
End Sub
32. VBA Tips - Turn Off Autofilter
Turning off autofilter using VBA is easy and quick, but you need to know how it's done.
Here's some code to toggle the autofilter on and off:
Jan-2010 ExcelExperts.com Update
Happy new year !
This year should be an exciting one with ExcelExperts.com making a big push for business.
The first large scale system is in production at a canadian company. They are very pleased so far, and have requested 2 more systems to compliment their sales operation.
We have taken on board feedback that the site was confusing and cluttered, and have changed the layout to be more intuitive.
31. VBA Tips - Convert Text To Number VBA
- use: EVALUATE()
Here's a step through demo sub routine:
Use brackets with data tables
I tried to show all possible cases I know but found that there are much more.
These are some of it.
Dec-2009 ExcelExperts.com Update
Hi all
This month has been very busy with ExcelExperts.com officially opening the doors to customers.
We have been swamped by requests for quotes, and it seems people realise that Excel is an increasingly popular business tool.
If you are a business using Excel, we guarantee that we can save you time and money with a little investment from you. Tell us your business processes, and we can advise on and implement changes.
We are looking for Excel Experts to join the team.
30. VBA Tips - Fast Search
Do you have a large amount of data held in an Excel Spreadsheet ?
- If so, you will be well aware how difficult it is to find things
This tip demonstrates a way using VBA that enables you to search through your data really quickly, and helps you to find what you are looking for.
What I have written is a demo I used for searching through flight details.
ExcelExperts.com is HIRING !
Yep, that's right, ExcelExperts.com is looking for Excel Experts to get paid for Excel consultancy.
...but this is no ordinary interview.
To apply for this job, you need to prove the following:
- You must be an Excel Expert, or be smart enough to learn quickly.
- You need excellent communication skills. (Written more important than verbal)
- You have to prove that you have the tenacity to see problems through to completion.
How do you prove this ?

Recent comments
22 hours 29 min ago
1 day 3 hours ago
2 days 4 hours ago
2 days 5 hours ago
3 days 4 hours ago
3 days 5 hours ago
1 week 2 hours ago
1 week 15 hours ago
1 week 1 day ago
1 week 2 days ago