Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Odd Question: Data to Text

A user has a huge spreadsheet. One column has been converted from data to
text.

We need every single cell to have the green error flag in the upper left
corner. This is needed to merge this spread with another program.

Is there some other way to accomplish this other than double clicking on and
outside of every cell? I'm talking about thousands of cells here....

Thank you!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Odd Question: Data to Text

I am confused.

I assume by "data" you mean "numbers".

You say the column has been converted to text.

How did you accomplish the conversion?

Error flag or no error flag is showing currently on the cells in this column?

You want an error flag in each cell?

Is Error-checking enabled in ToolsOptionsError-checking?

Are the appropriate checkboxes enabled?

Do you want a macro to add an apostrophe to every cell?

Sub Add_Text_Left()
Dim cell As Range
Dim thisrng As Range
Set thisrng = ActiveSheet.UsedRange
For Each cell In thisrng
cell.Value = "'" & cell.Value
Next
End Sub


Gord Dibben MS Excel MVP

On Fri, 16 Mar 2007 13:15:10 -0700, Littlebear
wrote:

A user has a huge spreadsheet. One column has been converted from data to
text.

We need every single cell to have the green error flag in the upper left
corner. This is needed to merge this spread with another program.

Is there some other way to accomplish this other than double clicking on and
outside of every cell? I'm talking about thousands of cells here....

Thank you!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Question about Data-Text to Columns command [email protected] Excel Discussion (Misc queries) 2 April 27th 06 09:10 PM
TEXT function question Bernard Liengme Excel Discussion (Misc queries) 3 April 26th 06 10:57 PM
save as text question skiier Excel Discussion (Misc queries) 4 August 19th 05 04:35 PM
Text box question Greg B... Excel Discussion (Misc queries) 0 March 1st 05 07:28 AM
Text box question Greg B... Excel Discussion (Misc queries) 3 February 27th 05 02:47 PM


All times are GMT +1. The time now is 12:43 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"