What stops auto fill working

Sunline

Well-known Member
Joined
Oct 6, 2007
Messages
701
Office Version
  1. 2016
Platform
  1. Windows
Hello all ,
I'm trying to use auto fill in its normal way , where you ,
Highlight col
Ctrl +G
Special
Blanks
OK
Then it starts going thru a random selection looking at cells . i can see this happening in the pane directly under the word clipboard . Top left in excel .
It tells me no cells found .
I had this working but am getting this all the time .
I also had a macro written which worked but now just auto fills only row 2 cell and fills to bottom which should be finding all other cells to auto fill . Confused . what might i be doing wrong .

Thanks .
 
Good call by rollis
Sorry but XL2BB is useless in this case. Contents of real cells are need.

It looks like you have received your data from a database. See here for how you can have apparently blank cells that are not registering as blanks (particularly the heading "more information")
The result is false when you use the ISBLANK function - Office
If under File > Options > Advanced > Lotus Compatibility settings > Transition navigation keys > Turn this on, you will be able to see a single quotation mark in the cells
see: Fix Blank Excel Cells Copied From Database – Contextures Blog, specifically the section "See the Hidden Content"
You only seem to be able to isolate that character using VBA Range.PrefixCharacter and even then only if you have turned on the above setting.

You can easily convert the cells appearing to be blank to real blanks.

In your case immediately after setting the last row in this line:
Rich (BB code):
vlRow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row

Paste the values back on to itself using the following:-
Rich (BB code):
    Range("F2:F" & vlRow).Value = Range("F2:F" & vlRow).Value
    Range("G2:G" & vlRow).Value = Range("G2:G" & vlRow).Value
 
Last edited:
Upvote 0
Solution

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Usually, in any version of Microsoft Excel, the Fill Handle option remains activated by default. But sometimes there could occur some issues that may disable the Fill Handle option. In that case, we have to enable the Fill Handle option manually.

What you have to do is go to the Advanced tab in the Excel Options menu first. Then Under the Editing Options bar, mark on the options showing the statements ‘Enable fill handle and cell drag-and-drop’ and ‘Enable AutoComplete for cell values’.
 
Upvote 0
Thanks guys , I made these changes and and can mark as solution .
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top