Blogs
Nick's Day By Day Excel Experts Blog
Submitted by NickV on 15 December, 2008 - 13:36- NickV's blog
- 41 comments
- 2115 reads

Feb-2010 ExcelExperts.com Update
Submitted by Nick on 3 February, 2010 - 09:42January 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.
- Nick's blog
- Add new comment
- Read more
- 197 reads

98. Excel Tips - Sort Columns
Submitted by Nick on 2 February, 2010 - 16:12Excel Tips - Sort Columns (Excel 2007)
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:
- Nick's blog
- Add new comment
- Read more
- 179 reads

97. Excel Tips - Camera Tool
Submitted by Nick on 26 January, 2010 - 11:36
Excel Tips - Camera Tool (Excel 2007)
- 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:
- Nick's blog
- 3 comments
- Read more
- 238 reads

What can't be done in Excel ?
Submitted by Nick on 25 January, 2010 - 10:48
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
- Nick's blog
- 5 comments
- Read more
- 261 reads

96. Excel Tips - Keyboard Shortcut To Open Excel
Submitted by Nick on 18 January, 2010 - 10:01Keyboard 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
- Nick's blog
- Add new comment
- Read more
- 343 reads
VBA Tips: Easy way to navigating with Range Object
Submitted by JeffLo on 16 January, 2010 - 05:43One 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.
- JeffLo's blog
- Add new comment
- Read more
- 138 reads

Jan-2010 NEW Excel VBA Jobs section
Submitted by Nick on 15 January, 2010 - 14:36
Excel VBA Jobs section
ExcelExperts.com is pleased to announce a new section for jobs.
Recruiters looking for Excel / VBA experts will be posting jobs here.
Excel / VBA Recruiters:
- Nick's blog
- Add new comment
- Read more
- 396 reads

95. Excel Tips - Cause Of Big Excel Files
Submitted by Nick on 14 January, 2010 - 16:03
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
- Nick's blog
- 2 comments
- Read more
- 431 reads

Advanced Filter
Submitted by hivishy on 9 January, 2010 - 21:49With 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.
- hivishy's blog
- Add new comment
- 209 reads

Excel VBA Tip - Bypassing Clipboard while copying values or formula in Excel
Submitted by hivishy on 9 January, 2010 - 18:04In 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
- hivishy's blog
- 5 comments
- Read more
- 513 reads

32. VBA Tips - Turn Off Autofilter
Submitted by Nick on 4 January, 2010 - 14:43
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:
- Nick's blog
- 1 comment
- Read more
- 397 reads

Jan-2010 ExcelExperts.com Update
Submitted by Nick on 4 January, 2010 - 12:20Happy 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.
- Nick's blog
- Add new comment
- Read more
- 129 reads

31. VBA Tips - Convert Text To Number VBA
Submitted by Nick on 30 December, 2009 - 10:39
Convert Text To a Number using VBA
- use: EVALUATE()
Here's a step through demo sub routine:
- Nick's blog
- Add new comment
- Read more
- 273 reads
Use brackets with data tables
Submitted by Cyril Myshkin on 12 December, 2009 - 15:34I tried to show all possible cases I know but found that there are much more.
These are some of it.
- Cyril Myshkin's blog
- Add new comment
- 170 reads

Dec-2009 ExcelExperts.com Update
Submitted by Nick on 12 December, 2009 - 13:53Hi 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.
- Nick's blog
- Add new comment
- Read more
- 171 reads

30. VBA Tips - Fast Search
Submitted by Nick on 12 December, 2009 - 11:39
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.
- Nick's blog
- Add new comment
- Read more
- 376 reads

ExcelExperts.com is HIRING !
Submitted by Nick on 8 December, 2009 - 14:06Yep, 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 ?
- Nick's blog
- Add new comment
- Read more
- 762 reads
Regarding Excel Query
Submitted by mandar on 30 November, 2009 - 11:12Hi,
- mandar's blog
- 1 comment
- Read more
- 222 reads

ExcelExperts.com - Excel VBA Consultancy is open for business !
Submitted by Nick on 12 November, 2009 - 11:54
ExcelExperts.com is excited to announce that our Excel VBA Consultancy service is open for business, and we have completed the first Excel VBA consultancy job.
The task involved analysing the valuation of a large development site by way of complex discounted cash flows prepared by property valuation experts.
The work included:
- Nick's blog
- Add new comment
- Read more
- 343 reads

Nov-2009 - ExcelExperts.com Update
Submitted by Nick on 9 November, 2009 - 15:08You've probably been wondering what I have been up to for the last few months given that there have not been many updates on the site.
Wellll... I've been looking after my new daughter, redecorating the entire house, and making photography books...
Here's the first one:
- Nick's blog
- Add new comment
- Read more
- 239 reads

Text Box Troubles...
Submitted by TeeNado58 on 20 October, 2009 - 19:57Hello - I am using Excel 2007 and on some of my files I notice that the slow way down when I try to change any data in the cells. While trying to find the casue of this slowdown I use the Page Layout tab and then Selection Pane and the window that opens shows many Text Boxes that I have not placed in this spreadsheet. It takes a few minutes to delete all of these text boxes and then save the workbook and all is fine. But I would like to know how these text boxes pop up and why. Has anyone had this same problem?
- TeeNado58's blog
- 1 comment
- Read more
- 313 reads
Replace easy question
Submitted by adriano on 17 September, 2009 - 13:17Im a column I have entries as follows:
6-16
5-10
2-14
I want to replace the "-" with "/"
When I go ahead and replace then using CTRL + H method; The replacement will also calculate a decimal number (42491) or put a date like entry (05/06/2009).
All I want is the cell to show 6/16 instead of 6-16.
I have changed the cell format to text and also have set the calculation to manual, but still keep having the same behaviour.
Any tips on how to do it? I'd really appreciate it.
- adriano's blog
- 2 comments
- Read more
- 439 reads
How to remove a row from another worksheet
Submitted by rspeedster on 10 September, 2009 - 17:28I have a List of names in Column(A)’Sheet1.
Row1-Judy
- rspeedster's blog
- 5 comments
- Read more
- 532 reads
Bird spreadsheet
Submitted by 4feathers on 25 August, 2009 - 22:20Hi people, i am a birdkeeper and am trying to set up a workbook with various spreadsheets that relate to 1. an id 2.a pen number and various other entries for each bird. On my Birds spreadsheet i have a colum named Pen and within the same workbook other spreadsheets named Pen1,Pen2,Pen3 and so on.
- 4feathers's blog
- 5 comments
- Read more
- 542 reads
Help in copying formula
Submitted by ronn on 13 June, 2009 - 14:54please help when i copied the formula #value! came out but when i checked the fomula its ok
it seemed that it didnt capture the numbers in the cell it is supposed to compute
pls see my attachment
thanks in advance
- ronn's blog
- 3 comments
- 614 reads

Teach Yourself Excel Lesson 27 - Create Hyperlinks
Submitted by Nick on 2 June, 2009 - 11:13
Create Hyperlinks
So, we have added data, pivot tables, and charts. We're now going to create an index page.
Steps:
- Nick's blog
- Add new comment
- Read more
- 1242 reads

Teach Yourself Excel Lesson 26 - Create A Chart
Submitted by Nick on 2 June, 2009 - 10:39
Create A Chart
Now we are going to create charts of our pivot tables so that we can get a visual representation of all this data.
Steps:
- Nick's blog
- 1 comment
- Read more
- 929 reads

Teach Yourself Excel Lesson 25 - Create A Pivot Table
Submitted by Nick on 2 June, 2009 - 09:55
Create A Pivot Table
And now the lesson you've all been waiting for - How to create a pivot table !
A pivot table is an ingenious invention that allows you to slice and dice your data in as many ways as you can think of.
- Nick's blog
- Add new comment
- Read more
- 1951 reads

Teach Yourself Excel Lesson 24 - Inserting And Renaming Worksheets
Submitted by Nick on 2 June, 2009 - 08:58
Inserting And Renaming Worksheets
We have finished with the data entry sheet now, so lets create an index page. We now need to insert a worksheet.
Insert A Worksheet
Steps:
- Nick's blog
- Add new comment
- Read more
- 1069 reads


Recent comments
14 hours 25 min ago
19 hours 22 min ago
1 day 19 hours ago
1 day 21 hours ago
2 days 20 hours ago
2 days 21 hours ago
6 days 18 hours ago
1 week 7 hours ago
1 week 1 day ago
1 week 1 day ago