CsJHUN
Active Member
- Joined
- Jan 13, 2015
- Messages
- 360
- Office Version
- 365
- 2021
- 2019
- Platform
- Windows
- Mobile
Hi!
I would like to get all text value on a worksheet into one variable.
I managed with cells, its obvious.
But stucked with other object which should have text value. So far i managed something like this will do, but...
Any help/advice is welcome
I would like to get all text value on a worksheet into one variable.
I managed with cells, its obvious.
Code:
...
Sheets(Sheets.Count).Select
For Each cell In Range("A11:EE500")
t = t & " " & LCase(cell.Value)
Next cell...
But stucked with other object which should have text value. So far i managed something like this will do, but...
Code:
For Each obj In Worksheets(Sheets.Count).OLEObjects
??????
next obj