![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Mar 2002
Posts: 20
|
Ive got a table and i want excel to automatically go through all the table untill it finds a blank cell and then add an x to the empty cell. Is there a formula that can do this or a macro?
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Use Edit | Go To... | Special... Blanks. Type "x" and press Control+Enter.
|
|
|
|
|
|
#3 |
|
New Member
Join Date: Mar 2002
Posts: 20
|
No I want excel to automatically go to the cell without human intervention. Any other suggestions?
|
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Write a VBA macro that upon opening the worksheet performs the Edit | Go To... Special Blanks described above.
|
|
|
|
|
|
#5 |
|
New Member
Join Date: Mar 2002
Posts: 20
|
and how do i do that then im not that much of a programmer
whats the command line? |
|
|
|
|
|
#6 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Quote:
[ This Message was edited by: Mark W. on 2002-03-05 12:19 ] |
|
|
|
|
|
|
#7 |
|
New Member
Join Date: Mar 2002
Posts: 20
|
ahh is there anyone else out there?
|
|
|
|
|
|
#8 |
|
New Member
Join Date: Mar 2002
Location: England
Posts: 46
|
instead of writing a macro, how about simply recording a macro to do it
|
|
|
|
|
|
#9 |
|
New Member
Join Date: Mar 2002
Posts: 20
|
tried it it wont record
|
|
|
|
|
|
#10 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Cells.Select
Selection.SpecialCells(xlCellTypeBlanks).Select Selection.FormulaR1C1 = "x" |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|