blueangel2323
New Member
- Joined
- Jul 12, 2011
- Messages
- 15
Hi everyone, I have an Excel spreadsheet that is linked to an external data source (table on an intranet page), which is refreshed by clicking on the red exclamation mark. I was wondering if it is possble to have a message box pop up notifying the user when the refresh is complete? I want this to be as user-friendly as possible for non-technical users.
On a side note, how do I make the following code run on only a specific column (let's say A) instead of the entire worksheet, just to speed things up?
Thanks!!
On a side note, how do I make the following code run on only a specific column (let's say A) instead of the entire worksheet, just to speed things up?
Code:
Dim cell As Range
For Each cell In Worksheets(1).UsedRange
cell = Trim(Replace(cell, Chr(160), " "))
Next cell
Thanks!!