How do I insert a blank row in a subform in Access similar to Excel. Excel gives to insert a blank line in the middle of other lines, how do I do this in a Subform in Datasheet view in Access?
Inserting blank row in subform in Access
1k Views Asked by Regis Santos At
1
There are 1 best solutions below
Related Questions in MS-ACCESS
- (x64 Nasm) Writeline function on Linux
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Why do we need AX instead of MOV DS, data directly with a segment?
- Bootloader in Assembly with Linux kernel
- How should the byte sequence 0x40 0x55 be interpreted by an x86-64 emulator?
- C++ code into assembly
- Drawing circles of increasing radius
- Assembly print on screen using pop ecx
- Equivalent to asm volatile in Gfortran?
- Show 640x480 BMP image with inline ASM c++
Related Questions in VBA
- (x64 Nasm) Writeline function on Linux
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Why do we need AX instead of MOV DS, data directly with a segment?
- Bootloader in Assembly with Linux kernel
- How should the byte sequence 0x40 0x55 be interpreted by an x86-64 emulator?
- C++ code into assembly
- Drawing circles of increasing radius
- Assembly print on screen using pop ecx
- Equivalent to asm volatile in Gfortran?
- Show 640x480 BMP image with inline ASM c++
Related Questions in SUBFORM
- (x64 Nasm) Writeline function on Linux
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Why do we need AX instead of MOV DS, data directly with a segment?
- Bootloader in Assembly with Linux kernel
- How should the byte sequence 0x40 0x55 be interpreted by an x86-64 emulator?
- C++ code into assembly
- Drawing circles of increasing radius
- Assembly print on screen using pop ecx
- Equivalent to asm volatile in Gfortran?
- Show 640x480 BMP image with inline ASM c++
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is not really possible without doing some gymnastics. Datasheet views aren't really an Excel replacement even if they look similar.
Do put in a blank row you would need to create a new record that is completely blank and save it that way. You would also need to have a field that you use to set the Order of the Rows, and you'd have to set the value of that field so that the row would be inserted where you want it to be. That usually means rewriting the values of all the other rows below as well. And finally, you'd need to requery the form so that the blank row shows up where you want it to. The end result of this is that you have a blank record saved, and that you can't setup any validation rules to prevent that.
One of the only other ways to accomplish this would be to do basically the same thing but using either a disconnected ADO recordset or else a "temp table". This means that when the user actually chooses to save their changes you would need to use code to write the records back into the database. Although this is a pretty good idea, it is a fairly advanced technique and not something I recommend beginners tackling without some guidance.
There is one more option you might consider yet and that is using an ActiveX grid control such as iGrid from 10tec or the MS List View control. Most developers do recommend staying away from ActiveX controls, and for good reasons. If you do go this route, it's also going to be code intense. You'll have to write code to fill the grid, and write more code to write changes back to the database. It's also quite advanced and not something for the faint of heart and hardly something I recommend for the beginner.
In short, Access is not really designed to do what you want to do here. At least not easily.