How to Easily Create a Data Entry Form in Excel | No VBA

  Рет қаралды 65,777

Jopa Excel

Jopa Excel

Күн бұрын

Пікірлер: 65
@lesrondee
@lesrondee 8 ай бұрын
Highly appreciated. Never imagined I'd be dealing with macros. Found it to be well-explained and easy-to-follow. Thank you!
@JopaExcel
@JopaExcel 8 ай бұрын
I'm glad you find it useful! Thanks for the feedback 🙏👍
@ThemSlotBoys
@ThemSlotBoys 6 ай бұрын
Its not giving me the option to insert down. Struggling to figure this out
@myzidan
@myzidan 4 ай бұрын
OMG, every single sentence from you contains valuable information for me! Thank you so much for such a clear video, liked and subscribed!
@ronewamabodi4274
@ronewamabodi4274 5 ай бұрын
Any idea how i can add a modify/edit button?
@thebesttechnical3608
@thebesttechnical3608 Ай бұрын
I learned something new today! Great video
@RobertoMaroldi
@RobertoMaroldi 2 ай бұрын
very well explained! And working properly!!
@akandemichael5926
@akandemichael5926 9 күн бұрын
Thank you a lot. Please, can the data entered ne edited? If yes, how? Thanks
@georgesakellariou5659
@georgesakellariou5659 11 күн бұрын
hi. I have a question. When I go to data validation and write 3, 4 words, when I go to form and push the arrow button it gaves me back in one row the words and NOT in a drop down list. What can I do? Thank you very much in advance.
@1cola828
@1cola828 Ай бұрын
Hi Jopa, Great job, thanks a million. Could we add a search button on the form based on the Item or on the date to be able to update in a second stage some of the other field?
@amyatworkfoodgroup
@amyatworkfoodgroup 2 ай бұрын
Just what I needed. Thanks!
@ShmilHead
@ShmilHead 2 ай бұрын
Is there a way that each time a user push the submits botton its sends the data to Outlook address?
@mabuhayka
@mabuhayka 5 ай бұрын
Hard time to understand how to lock cell and sheet in macro. I receive a lot of error .
@1724joshua
@1724joshua 4 ай бұрын
This is a very beginner friendly tutorial. All movements have clear explanation and with a little bit of imagination, the viewers can modify the way the macro works.
@edwardmacairan7834
@edwardmacairan7834 3 ай бұрын
Can I still put data in worksheet if it is protected sheet?
@RMFJUNKYARD
@RMFJUNKYARD 7 ай бұрын
if i hide the the sheet (inventory management) does it still works?
@JopaExcel
@JopaExcel 7 ай бұрын
If you hide a sheet, the macro will not work. The macro uses the name of the sheets to work. When you hide a sheet, the macro cannot find it.
@JopaExcel
@JopaExcel 7 ай бұрын
Maybe we can open the VBA code behind the macro and modify it to unhide the sheet, the perform the operations, and then hide it again. Just an example below: Sub ModifyHiddenSheet() Dim ws As Worksheet Set ws = ThisWorkbook.Sheets("inventory management") ' Unhide the sheet ws.Visible = xlSheetVisible ' Perform your operations here( example: adding data to cell A1) ws.Range("A1").Value = "Abc 123 abc 123" ' Hide the sheet again (if necessary) ws.Visible = xlSheetHidden End Sub
@Esgala2024
@Esgala2024 8 ай бұрын
what if i wanted to insert the data to certain cells instead? is that possible, I plan to make this but in the second book it would look like a document ready to print with headers and footers, company logo, but the body of the document is the data i inputted in from the first book? is that possible?
@Esgala2024
@Esgala2024 8 ай бұрын
What if i wanted for the inputted data to appear in certain cells in the second book? Like, i wanted to create it as a way to automate creating a printable document with headers and footers, company logo and etc. with the inputted data to only appear as the body of the document per-se. is that possible?
@robertstark396
@robertstark396 3 ай бұрын
Awesome video, thank you!
@matthewthia
@matthewthia 6 ай бұрын
hi! really informative video, but does this still work if the entry form is in a separate excel workbook from the sheet storing the records?
@SalesManager-lp2qu
@SalesManager-lp2qu 7 ай бұрын
@JopaExcel, many many thanks! I found what I wanted. Can you please comment how to clean the form AFTER being filled for a new user/entry PLEASE?
@alexrosen8762
@alexrosen8762 8 ай бұрын
Very useful and smart because you made it simple to understand and apply for my own needs without any VBA 👌🙏👌
@JopaExcel
@JopaExcel 8 ай бұрын
Thanks, Alex! Glad it was useful 🙏👍
@ChantyHok
@ChantyHok 6 ай бұрын
This is the first time I'm watching your video❤
@rodeld.rengel4905
@rodeld.rengel4905 8 ай бұрын
There's a pop up error if i protect either sheets.
@SalesManager-lp2qu
@SalesManager-lp2qu 7 ай бұрын
Hi, how do you fix it? It might be needed to avoid changes to the tab/worksheet...
@Abdul-JaleelAyuba
@Abdul-JaleelAyuba 5 ай бұрын
Great tutorial. But I have a quick question. Is it possible for the submitted data to go into two different rows in the Data Sheet? This is required for accounting double entry purposes.
@1724joshua
@1724joshua 4 ай бұрын
I think it can be done with a small alteration in the Macro process.
@hamada5247
@hamada5247 8 ай бұрын
Thanx a lot but if I want the new data become in the second row how can I do that
@JopaExcel
@JopaExcel 7 ай бұрын
We can do this dynamically. It starts on the first row, then the second, third, fourth and so on. You can use the navigation keys together with CTRL to always jump to the last row and then the down arrow to skip to the first blank row.
@pradeeshp2487
@pradeeshp2487 8 ай бұрын
If I have more than one sheets can I apply the same method to all sheet?
@JopaExcel
@JopaExcel 8 ай бұрын
For sure. You can use the same method. I'll give an example just to make it easier to understand. Let's say you have three sheets, the first with the name of the products, the second with the customer, and the third with the record of all sales made. You can create a new spreadsheet with the form like I showed in the video. This sheet with the form, will fill in all the other parts of the sheets. It might even be interesting for you to create one form for each sheet. If you have three sheets, make three forms, etc. And, for each form, you can create a macro.
@ayacleopa5467
@ayacleopa5467 8 ай бұрын
That was helpful. I need to know how to maintain first entry at number one while the following goes after the first entry. Thank you!
@JopaExcel
@JopaExcel 8 ай бұрын
Glad it was helpful! 🙏👍
@Nana-pw5ig
@Nana-pw5ig 4 ай бұрын
Thanks for your video.
@alantan1035
@alantan1035 2 ай бұрын
Hi, I like this video. Coz I learn new. Beside that if from the data how to generate an report as monthly report month by month
@khalidmajeed2886
@khalidmajeed2886 7 ай бұрын
Mashallah sir,,,,,,,,,,,,,,,,,,,but i have a question that option button should be disabled how we do it
@SalesManager-lp2qu
@SalesManager-lp2qu 7 ай бұрын
One more thing, how could I make the data entry separate from the database so it´s only "one-way": people feed but has not access to the information PLEASE?
@Sportamaniac
@Sportamaniac Ай бұрын
You can hide the Database sheet
@NumanAbdulmanea
@NumanAbdulmanea 8 ай бұрын
You are amazing, thank you so much
@JopaExcel
@JopaExcel 8 ай бұрын
You're so welcome! 🙏👍
@palermopuertoricankitchen
@palermopuertoricankitchen 8 ай бұрын
Love your videos
@JopaExcel
@JopaExcel 8 ай бұрын
Thank you, sir! 🙏👍 Are you from Italy or Puerto Rico? Solo pregunto porque yo sé hablar un poquito de Español 🤣
@palermopuertoricankitchen
@palermopuertoricankitchen 8 ай бұрын
Puerto Rican Italian
@royale4004
@royale4004 2 ай бұрын
thank you very nice
@kasper643
@kasper643 8 ай бұрын
Cannot be used if you want to avoid Macros eventhough the title give that impression.
@JopaExcel
@JopaExcel 8 ай бұрын
I understand what you mean, but you are confusing the terms. To automate tasks you can use Macro, but you don't necessarily need to know VBA. As briefly as possible, Macro is just the tool to record clicks, you don't need to know any programming for that.
@mocassine1
@mocassine1 8 ай бұрын
Can you create something similar for a school exams records?
@Me_ThatsWho
@Me_ThatsWho 7 ай бұрын
Thanks, Jopa. A couple of thoughts: 1) your idea about first copying/pasting all values into the Form and then copying pasting them again on the Inventory sheet was new to me. However, I thought that whenever one selected "copy values", the formulas naturally wouldn't paste. I'll have to test this out to see what happens. 2) An alternate way to hide the helper cells is to make them all white 3) One should also protect the worksheets so that users can modify only certain cells. That is, the helper cells on the Form and the cells in Inventory should never be directly modified by users.
@JopaExcel
@JopaExcel 7 ай бұрын
Thanks for the feedback! 🙏👍 About the number 2-). I actually did make it all white in the origianl video, but I removed this part when editing the video, the video was getting too long and I don't like to waste the viewers time, but anyway... About 3-). You're right, protecting the sheet is an excellent idea. I will bring more videos on the subject and I will definitely consider your feedback. Thanks a lot.
@Me_ThatsWho
@Me_ThatsWho 7 ай бұрын
​@@JopaExcel Hey. Thanks. Btw, re my first point, when I queried chatGPT 4.o about it, it said if you just select "paste values", the formulas (i.e. =cell) will not be pasted. So, what's the issue?
@JopaExcel
@JopaExcel 7 ай бұрын
@@Me_ThatsWho It is possible to copy and paste cells with formulas. You don't just need to copy and paste only values. Just copy a cell that has a formula inside, and then use "Home tab" then "Insert", "Insert Cells" and "Shift cells down". It works, please test it and you will see.
@Me_ThatsWho
@Me_ThatsWho 7 ай бұрын
@@JopaExcel You misunderstand me. In your video, you stated that you did NOT want to directly copy and paste into the spreadsheet for fear that would carry over formulae too (such as ' =A1 '). As you'll recall, that was why you first copied/pasted onto the original sheet before copy/pasting a second time into the spreadsheet. With my comment, I was just indicating that coying/pasting twice was unnecessary if you use 'copy values'. Get my point ?
@JESUSISSAVIOR210
@JESUSISSAVIOR210 6 ай бұрын
Thank you
@alschroeder1724
@alschroeder1724 8 ай бұрын
A few comments, hopefully constructive. 1) A bit too fast, little slower on delivery. 2) Hated that you hid the columns prior to running the macro. Would have been nice to see the full macro run through what was happening in the hidden columns. 3) Maybe a summary at the end of the buttons selected; or some way of having a screenshot list to work from rather than searching through the whole video. 4) Liked that during the video you circled in red to highlight what you were specifically describing…so many just say it and your left trying to search the screen for what they’re talking about, nice job there! Liked your concept and the style of presentation. Again just my opinion on comments. Cheers!
@JopaExcel
@JopaExcel 8 ай бұрын
Thanks for the feedback. I will do my best for improve for the next videos. 👍
@NetsanetMisganaw
@NetsanetMisganaw Ай бұрын
tank you
@mramsch
@mramsch 3 ай бұрын
Recording a macro creates a VBA procedure. The term "No VBA" is therefore somewhat misleading. In fact, you cannot save your Excel file as ".xlsx", but must use the macro/VBA-enabled ".xlsm" format, which may even be blocked for security reasons. An Excel build-in data entry form that doesn't actually use VBA is explained at kzbin.info/www/bejne/mX_Td3VugpZgmqs (which won't be the solution for many, but is still a very useful time saver for many)
@mramsch
@mramsch 3 ай бұрын
Your tutorial is remarkably similar to that of kzbin.info/www/bejne/i4ndgJ94fsSNoZI, which was published 9 days earlier.
@Financial_Reporting
@Financial_Reporting Ай бұрын
True!!!!
@armageddon2520
@armageddon2520 3 ай бұрын
Too much time is spent to explain basic formatting this subject is supposed to be intermediate level
@jaquesadv
@jaquesadv 3 ай бұрын
Just shut up and be thankful!
@tysonthedeejay_kimbeats5428
@tysonthedeejay_kimbeats5428 3 ай бұрын
hi how can i contact you
EASILY Make an Automated Data Entry Form in Excel
14:52
Kenji Explains
Рет қаралды 1 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
How to Create a Data Entry Form to ADD and REMOVE Rows in Excel
17:43
SUPER EASY Excel Data Entry Form (NO VBA)
6:22
Leila Gharani
Рет қаралды 2,1 МЛН
Create Userform in Excel VBA Macro in Detail
18:42
Training by Himanshu
Рет қаралды 177 М.
Form in Google Sheets | Data Entry Form
13:35
raksrahul
Рет қаралды 20 М.
EASIEST Excel Data Entry Form in 2024 | No VBA Required
9:19
MyOnlineTrainingHub
Рет қаралды 86 М.
How To Create A Navigation Menu Pane In Excel - No VBA
5:48
Automated Data Entry Form in Excel
19:35
Ajay Anand
Рет қаралды 18 М.
Make Multiple Dependent Dropdown Lists in Excel (Easiest Method)
10:59
Kenji Explains
Рет қаралды 102 М.
5 Excel Secrets You'll Be Embarrassed You Didn't Know
17:32
Excel Campus - Jon
Рет қаралды 290 М.