Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I want to enter a null character in a cell, I:
1. enter ="" in A1 2. copy A1 3. select A2 4. paste/special/value A2 will now contain the null (ISBLANK(A2) will display FALSE) Is there any way I can accomplish this without using this cumbersome process? -- Gary''s Student - gsnu200901 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could just type a single apostrophe in A2 (or does that not
count?). Hope this helps. Pete On Aug 21, 5:01*pm, Gary''s Student wrote: If I want to enter a null character in a cell, I: 1. enter ="" in A1 2. copy A1 3. select A2 4. paste/special/value A2 will now contain the null (ISBLANK(A2) will display FALSE) Is there any way I can accomplish this without using this cumbersome process? -- Gary''s Student - gsnu200901 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would rather not use a prefix character.
By the way, I can't even figure out how to do this in VBA without a copy/paste!!! Thanks for the reply -- Gary''s Student - gsnu200901 "Pete_UK" wrote: You could just type a single apostrophe in A2 (or does that not count?). Hope this helps. Pete On Aug 21, 5:01 pm, Gary''s Student wrote: If I want to enter a null character in a cell, I: 1. enter ="" in A1 2. copy A1 3. select A2 4. paste/special/value A2 will now contain the null (ISBLANK(A2) will display FALSE) Is there any way I can accomplish this without using this cumbersome process? -- Gary''s Student - gsnu200901 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Range("a10:a20")= CHR(39)
If this post helps click Yes --------------- Jacob Skaria "Gary''s Student" wrote: I would rather not use a prefix character. By the way, I can't even figure out how to do this in VBA without a copy/paste!!! Thanks for the reply -- Gary''s Student - gsnu200901 "Pete_UK" wrote: You could just type a single apostrophe in A2 (or does that not count?). Hope this helps. Pete On Aug 21, 5:01 pm, Gary''s Student wrote: If I want to enter a null character in a cell, I: 1. enter ="" in A1 2. copy A1 3. select A2 4. paste/special/value A2 will now contain the null (ISBLANK(A2) will display FALSE) Is there any way I can accomplish this without using this cumbersome process? -- Gary''s Student - gsnu200901 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Gary''s Student" wrote:
I would rather not use a prefix character. By the way, I can't even figure out how to do this in VBA I think you want a cell that is treated as text (specifically the null string), but the cell contains no visible characters and no formula. TYPE() should return 2, LEN() should return 0, and ISBLANK() should return FALSE (or perhaps that's what you want to determine). If you are content to change the cell format to Text, then: range("a1").numberformat = "@" range("a1") = "" If you want to preserve the original format (e.g. General), then: oldform = range("a1").numberformat range("a1").numberformat = "@" range("a1") = "" range("a1").numberformat = oldform I'd be interested in a simpler way. Neither of the following works: range("a1") = "" or range("a1").value2 = "" ----- original message ----- "Gary''s Student" wrote in message ... I would rather not use a prefix character. By the way, I can't even figure out how to do this in VBA without a copy/paste!!! Thanks for the reply -- Gary''s Student - gsnu200901 "Pete_UK" wrote: You could just type a single apostrophe in A2 (or does that not count?). Hope this helps. Pete On Aug 21, 5:01 pm, Gary''s Student wrote: If I want to enter a null character in a cell, I: 1. enter ="" in A1 2. copy A1 3. select A2 4. paste/special/value A2 will now contain the null (ISBLANK(A2) will display FALSE) Is there any way I can accomplish this without using this cumbersome process? -- Gary''s Student - gsnu200901 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Entering HH:MM | Excel Discussion (Misc queries) | |||
Entering Data | Excel Discussion (Misc queries) | |||
Entering Time | Excel Discussion (Misc queries) | |||
entering a 0 before a number | Excel Discussion (Misc queries) | |||
102. not entering the same as 102.00 | Excel Discussion (Misc queries) |