Тёмный

How To Map Userform Data To An Excel Table With 5 Lines Of Code 

Excel For Freelancers
Подписаться 576 тыс.
Просмотров 9 тыс.
50% 1

Опубликовано:

 

28 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 45   
@ExcelForFreelancers
@ExcelForFreelancers Месяц назад
📅Excel Calendar Pro: Your Solution to Stress-Free Scheduling 👉 rebrand.ly/CalendarPro_PinnedComm
@Robbie1987a
@Robbie1987a 2 месяца назад
Thanks a lot! Love every single content you share with us. Greetings from Poland!
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Thank you so very much, I really appreciate that Robbie and so glad you enjoyed it
@frankedwards1954
@frankedwards1954 2 месяца назад
Love the way that you get on with the coding (after the advertising ). Really easy to follow what you're doing and great technique. Thank You
@frankedwards1954
@frankedwards1954 2 месяца назад
I realized after deleting data that, on update, column 5 (Row) should update the formula with "=ROW()" not a number. Otherwise, when a row is deleted the row numbers are no longer correct.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Great and thanks so much. I am so glad you like it Frank. You can uncomment the line of code that ads thr row so that the row is always kept Row numbers should always use a formula =Row() I hope this helps and thanks so much.
@TheLegend_lab
@TheLegend_lab 2 месяца назад
Super greater from the start to the end very clear for me. No confusion at all
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Awesome. I will make more like this. Thanks again
@MBJazzful
@MBJazzful 2 месяца назад
I love this! I have futtered, but you show how to make the application do the work. This looks like an exceptional example to get someone who has made a start into VBA get a grip of the power and get a better undestanding of how to use it. Thanks
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Awesome! I am really happy to hear that and glad I can help. Thank you for your Likes, Shares & Comments. It really helps.
@gaad7938
@gaad7938 2 месяца назад
Than,k you, thank you!!! Very helpfula nd useful. Ive never had VBA explained so clearly. I really appreciate it.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
For sure, you are very welcome and I am very happy to help and share
@michaelsvenson2456
@michaelsvenson2456 2 месяца назад
As always a true joy to look at your videos, amazing this VBA stuff and you make it so easy to understand... ;-) Thumbs up, again
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Thank you so very much, I really appreciate that Michael and so glad you enjoyed the training
@chrisk.2957
@chrisk.2957 2 месяца назад
Great Training, love it. Thanks Randy!
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Thank you so very much, I really appreciate that Chris and so glad you enjoyed it
@donniemcgee7523
@donniemcgee7523 Месяц назад
Thank you very much for this helpful tutorial.!
@ExcelForFreelancers
@ExcelForFreelancers Месяц назад
You are very welcome Donnie. I have tons on AI integration. from my AI Playlist I think you will like. If you do try this, it may return an error with a free open AI account but will work with a paid account. With that said I am considering releasing this as a product so you do not need to use your own account. I hope this helps and thanks so much.
@hassanhilaly8810
@hassanhilaly8810 2 месяца назад
I am eagerly awaiting the release of the new video. Thank you very much in advance.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Thank you so very much, I really appreciate that
@ranilan00
@ranilan00 2 месяца назад
Great technique. will implement that on my work
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
That is great to hear. I am so happy that you enjoyed this training.
@donniemcgee7523
@donniemcgee7523 Месяц назад
Wow! That would be awesome!!!!
@ExcelForFreelancers
@ExcelForFreelancers Месяц назад
Absolutely Donnie. I really to appreciate your incredible support. Thanks so much
@Bartlefevere
@Bartlefevere 2 месяца назад
Hi Randy, Thank you very much for this video. I built an address book based on your video. Everything went smoothly. However, I did notice an error. It concerns the row number. Suppose, as in your example, you have ten names. When entering the first name in the table (directly in the table and not via the Form), I enter "=ROW()" in the last column (called "row"). That works fine. The first name is in row number 3, so 3 is entered in column "row" in the table. Everything fine. If I add a new name, that new name will automatically be numbered "4" and so on... I fill in the remaining nine names via the form and each name gets its unique number. However, if I now delete the name in row 8 via the form, rows 9,10,11 and 12 are moved up. The row number 8 in Excel now contains in the "row" column of the table the number 9 and no longer the number 8. Now if I want to delete row number 9 (which after deleting row number 8 in the table now has the number 10) then of course the row number 10 is deleted in stead of row number 9. That is of course not the intention. How can the code be adjusted so that this does not happen again? Actually, when deleting a contact, the column number in the table (last column) should also be adjusted so that it always matches the row number in the table. Thanks in advance. Kind regards.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Hi and thanks for your comment and question. When entering the row # via VBA code, we always want to enter the formula using VBA such as .range("K" & ContRow).value = "=Row()" this way no matter what row is deleted, the actual row # will always be accurate. In the row column you would never want to enter the actual row number (manually or with VBA code) and would always want to use the formula. If you are using an advanced filter or separate list of record on this sheet, another sheet, or in a userform, this list must be refresh after every delete, save or update of the record. I hope this helps and thanks so much.
@Bartlefevere
@Bartlefevere 2 месяца назад
Thank you for your quick answer. I understand what you are saying. But in the video it is not explained like this. Could you please copy here the excact line of code I would have to replace with the code you suggest in your answer? Thank you so much. 👍
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Hi and thanks, you would want to add the line Sheet1.range("E" & ContRow).value = "=Row()" After the For/Next loop. This is not needed if you are using a table, as the formula is automated, when using a table, just like in my sample Feel free to download this file using the links in the description under the word DOWNLOAD. I hope this helps and thanks.
@Bartlefevere
@Bartlefevere 2 месяца назад
@@ExcelForFreelancers Thank you for your answer. It works perfectly that way. I used all the instructions in your example and did insert a table and gave it a name. Without that additional line of code, the next number is simply entered in the "Row" column and not the formula "=Row()". But for me the problem is solved, with the additional line of code the formula "=Row()" is correctly filled in. I don't want to be difficult, but I just wanted to share my experiences with you and the members. Who knows, maybe it will help someone. In any case, thank you very much. By the way, I tried to download the file, entered my email address, but unfortunately I did not receive anything.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Yes great. If you don't have a table, it will not be automated, however when you create a table from your data, it will be automated. I hope this helps and thanks so much.
@gaspumprepairservice7009
@gaspumprepairservice7009 2 месяца назад
Very good. Thank you, sir.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
For sure, you are very welcome and I am happy to help and share.
@gaspumprepairservice7009
@gaspumprepairservice7009 2 месяца назад
@@ExcelForFreelancers and a good Monday morning to you.
@ahfoudaabdelaziz3011
@ahfoudaabdelaziz3011 2 месяца назад
Merci infiniment.
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Bien sûr, vous êtes le bienvenu
@SaiKyauk-11021
@SaiKyauk-11021 2 месяца назад
อยากให้คุณสร้างระบบ jewellery shop system หรือ ระบบร้านทองจัง
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
สวัสดี ขอบคุณสำหรับข้อมูล เราช่วยคุณได้แน่นอน แม้ว่าฉันจะไม่สามารถดำเนินโครงการใดๆ ได้ แต่ฉันก็ยินดีที่จะส่งต่อข้อมูลนี้ให้กับนักพัฒนาที่มีคุณสมบัติเหมาะสม โปรดส่งข้อมูลจำเพาะทั้งหมดของคุณมาให้ฉันทางอีเมลพร้อมขอบเขตรายละเอียดเพื่อให้ฉันส่งต่อข้อมูลดังกล่าวให้กับนักพัฒนาได้ Randy@ExcelForFreelancers.com ขอบคุณมาก
@shaharyarahmed6124
@shaharyarahmed6124 2 месяца назад
Sir kindly make a adins like vstack & hstack Otherwise make a vba code for data stack 1,2,3,3,5 column stack data please
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Hi and thanks so much. I will do my best to get that completed in the near future. Thank you for your Likes, Shares & Comments. It really helps.
@giacomosforzi4836
@giacomosforzi4836 2 месяца назад
good evening mr randy, J want to download the resources and the updated workbook "Perishable Inventory menagement update", but, it say me "Page not found", and like this video also the others of 1 years ago. how can J do? thank for your reponse
@ExcelForFreelancers
@ExcelForFreelancers 2 месяца назад
Hi and thanks so much. The links have been updated and you can now download the updated workbook. I hope this helps and thanks so much.