+ Reply to Thread
Results 1 to 37 of 37

Create a data entry form for Excel

  1. #1
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Create a data entry form for Excel

    Hello,

    I would like to create a data entry form in Excel so that by clicking button named "Create BKA", it would a open a data entry pop-up window as shown in the attached Excel file. After entering this required data in pop window, it should be copied in the next available free row such that each entry should appear under the respective column title as mentioned in the data entry form.

    I would really appreciate the help of expert in this forum to solve this problem as I am still learning the macros.

    Thank you in advance!
    Attached Files Attached Files

  2. #2
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    Is column C (ITEMGRUPPE_NAME) the value from column A along with the value entered in the "Description" text box?

    BSB

  3. #3
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Yes, we can also interpret that way. As Column C has always the value of Column A in the beginning followed by Description. But this is done manually as standard process till now. Can we automate this manual entry?

    Thank you!
    Last edited by AliGW; 09-27-2024 at 02:18 AM. Reason: Please don't quote unnecessarily - use the Quick Reply button instead. Please review the forum guidelines.

  4. #4
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    Yes, if the user enters a description that column can be populated automatically from the userform.

    Leave it with me and I'll post something back shortly.

    BSB

  5. #5
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    Give the attached a try.
    Code could be written to be more efficient, but I've written it in a very basic way that means you should be able to amend it yourself.

    I'll leave you to make the form look pretty.

    BSB
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Thank you very much for your quick feedback. Data entry form looks really how I want it to be.

    I entered relevant details in the form to add new entry for eg. I selected "AUSG03" in Sachgebiet and then selected "A3, A4, A5, A6" from Modelgruppe, Item Description = "Test" and then entered Normal Kapa ="500" and Max Kapa = "1000". And after entering this details, I clicked "Daten Übernehmen (Transfer Data)" but it is not working and I am seeing the macro code after clicking this button.

    Normally after clicking "Daten Übernehmen (Transfer Data)", I was expecting to see four new rows with the same ItemNummer and Sachgebiet as "AUSG03" with Model A3, A4, A5, A6 mentioned in each of the row with same value of Normal Kapa and Max Kapa.

    Would you please help me here and have a look here?

    For reference, I have also attached snip which shows the code after the macro execution. Also for easy execution, can we create one button on the top which would execute this data entry form easily for the end user.

    Thank you very much in advance!Attachment 879819
    Last edited by AliGW; 09-27-2024 at 02:18 AM. Reason: Please don't quote unnecessarily - use the Quick Reply button instead. Please review the forum guidelines.

  7. #7
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    I've followed the steps you outline above, and pressed the button and all works fine for me.
    See attached with the results entered. I've also added a button at the top of the sheet to open the form.

    Your screen grab attachment doesn't work so I can't see which line of code you're getting the error on.

    BSB
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by BadlySpelledBuoy View Post
    I've followed the steps you outline above, and pressed the button and all works fine for me.
    See attached with the results entered. I've also added a button at the top of the sheet to open the form.

    Your screen grab attachment doesn't work so I can't see which line of code you're getting the error on.

    BSB
    Good Morning @BadlySpelledBuoy,

    thank you first of all for your amazing support. I tried this new excel and it is definitely working when I select one Modellgruppe in data entry pop-up but when I select two or more number of "Modelgruppe" at the same time in data entry form then it is still not working and it is just showing choosen Sachgebiet "AUSG08" aswriiten value and everything else is blank (Please refer to snip "2. After Execution").

    So there are two things missing in our data entry form:

    1. It should work when mutliple "Modelgrupppe" is selected in Data Entry Form. Eg. Please refer to attached Snip "1. Before Execution" where I have selected four Model "A7, A8, A9, A10" and now this each model must appear in separate row as shown in snip "This is how it should have worked"

    2. I forgot to mention one thing earlier that if during Data Entry, if Sachgebiet = "AUSG08" one ModelGruppe = "A4" is selected and if is "PRN = 1L0, 1LR, 1LQ" then after execution three row must appear with same Sachgebiet, same Itemgruppe Nummer, same Modelgruppe which is "A4" in this case but in each row PRN will be unique. So First row will have all the details same expect PRN which will be "1L0" and in second row PRN will be "1LR" and in third row PRN will be "1LQ". So in total 3 rows with same detail but with different PRN in each row.

    Similarly it should work when multiple "Modelgruppe" is selected in data entry form. If Model "A7,A8,A9,A10" are selected at the same time and PNR is filled with "1L0, 1LR, 1LQ" then it should generate in total (4 model x 3 PRN = 12 rows) 12 new rows. So A7 will be with PRN "1L0, 1LR, 1LQ", then A8 with PRN 1L0, 1LR, 1LQ", A9 with PNR "1L0, 1LR, 1LQ" and A10 with "1L0, 1LR, 1LQ" in each row respectively.

    Sorry for the rework, i hope i am able to explain the To Dos clearly.

    Thank you once again and wish you a nice day!Attachment 879844Attachment 879845Attachment 879846

  9. #9
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Hope I'm not overstepping...lending from BSB...
    I prefer sticking to default control names...

    Enter PRN as 1L0,1LR,1LQ ... No spaces
    Attached Files Attached Files
    Last edited by Sintek; 09-27-2024 at 07:41 AM.
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

  10. #10
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    Hope I'm not overstepping...lending from BSB...
    I prefer sticking to default control names...

    Enter PRN as 1L0,1LR,1LQ ... No spaces
    Unfortunately the data entry form is not working at all. I entered all the details and clicked "data transfer" but nothing is written in the row.

    Also how I can program, so that new "Itemgruppe Nummer" starts in continuity of last "Itemgruppe nummer" which is already there in example. For example if in the excel last "Itemgruppe Nummer = I00000262065" then new entry must start from "I00000262066"

    Thank you once again!

  11. #11
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by vk1995 View Post
    Good Morning @BadlySpelledBuoy,

    thank you first of all for your amazing support. I tried this new excel and it is definitely working when I select one Modellgruppe in data entry pop-up but when I select two or more number of "Modelgruppe" at the same time in data entry form then it is still not working and it is just showing choosen Sachgebiet "AUSG08" aswriiten value and everything else is blank (Please refer to snip "2. After Execution").

    So there are two things missing in our data entry form:

    1. It should work when mutliple "Modelgrupppe" is selected in Data Entry Form. Eg. Please refer to attached Snip "1. Before Execution" where I have selected four Model "A7, A8, A9, A10" and now this each model must appear in separate row as shown in snip "This is how it should have worked"

    2. I forgot to mention one thing earlier that if during Data Entry, if Sachgebiet = "AUSG08" one ModelGruppe = "A4" is selected and if is "PRN = 1L0, 1LR, 1LQ" then after execution three row must appear with same Sachgebiet, same Itemgruppe Nummer, same Modelgruppe which is "A4" in this case but in each row PRN will be unique. So First row will have all the details same expect PRN which will be "1L0" and in second row PRN will be "1LR" and in third row PRN will be "1LQ". So in total 3 rows with same detail but with different PRN in each row.

    Similarly it should work when multiple "Modelgruppe" is selected in data entry form. If Model "A7,A8,A9,A10" are selected at the same time and PNR is filled with "1L0, 1LR, 1LQ" then it should generate in total (4 model x 3 PRN = 12 rows) 12 new rows. So A7 will be with PRN "1L0, 1LR, 1LQ", then A8 with PRN 1L0, 1LR, 1LQ", A9 with PNR "1L0, 1LR, 1LQ" and A10 with "1L0, 1LR, 1LQ" in each row respectively.

    Sorry for the rework, i hope i am able to explain the To Dos clearly.

    Thank you once again and wish you a nice day!Attachment 879844Attachment 879845Attachment 879846
    Hi @BadlySpelledBuoy, would you please look into these again?

    Thank you!

  12. #12
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Unfortunately the data entry form is not working at all. I entered all the details and clicked "data transfer" but nothing is written in the row.
    I entered this...as per...
    If Model "A7,A8,A9,A10" are selected at the same time and PNR is filled with "1L0, 1LR, 1LQ" then it should generate in total (4 model x 3 PRN = 12 rows) 12 new rows. So A7 will be with PRN "1L0, 1LR, 1LQ", then A8 with PRN 1L0, 1LR, 1LQ", A9 with PNR "1L0, 1LR, 1LQ" and A10 with "1L0, 1LR, 1LQ" in each row respectively.
    Untitled.png

    And this is the result...

    Untitled.png


    For example if in the excel last "Itemgruppe Nummer = I00000262065" then new entry must start from "I00000262066"
    BSB's code does that

    Remember what I said about PRN
    Last edited by Sintek; 09-27-2024 at 09:37 AM.

  13. #13
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    I entered this...as per...


    Attachment 879863

    And this is the result...

    Attachment 879864



    BSB's code does that

    Remember what I said about PRN
    would you please this excel file which gives you this result, then i can check again. Thank you.

  14. #14
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    File in post 9

  15. #15
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    File in post 9
    Thank you very much, now it's working fine. Just one more question: how can i start the new entry with Itemgruppe Nummer = "I00000262066" as I want to add this macro in existing file where last Itemgruppe nummer is already "I00000262065".

    Thank you once again.

  16. #16
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Is your file currently blank and you want to start with number "I00000262066" then

    Replace UserForm_Initialize code with this...
    Please Login or Register  to view this content.
    Last edited by Sintek; 09-27-2024 at 10:49 AM.

  17. #17
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    @Sintex - Thanks for taking over on this. I've not had a chance to reply as been busy with the day job.

    I'm still not sure why there was an issue with the original file. Worked fine for me.
    It's always difficult to diagnose the issue when we're not being shown what the problem is. All attachments of screen grabs didn't work when trying to open, so I was left clueless to the problem.

    BSB

  18. #18
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    @ BSB...Your file worked as it should...
    OP wanted an additional requirement...
    Duplicate PNR numbers seperated by comma to be entered all individually with all other data as seperate entries...

  19. #19
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,944

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    @ BSB...Your file worked as it should...
    OP wanted an additional requirement...
    Duplicate PNR numbers seperated by comma to be entered all individually with all other data as seperate entries...
    Hmmm... well posts #6 and #8 seem to suggest it wasn't working when multiple values were selected.
    Perhaps I misunderstood. It's been a long week! :D

    BSB

  20. #20
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Hi, I have one more question to this existing macro file. I want to create one more Text named as "Restriktion Nr" in this macro which I tried to add in Form but it is not copying the data after entering submitting the details in it. Maybe code for this additional "Textbox14" and "Label17" is missing. Could you please here?
    Just for knowledge, could you please educate me how to delete or add the text box in the user form here. I would really appreciate your help.

    I have attached snip showing new textbox "Restriktion Nr" but it is not active. Thank you the help in advance!
    Attached Images Attached Images
    Attached Files Attached Files

  21. #21
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    I have one more question related to this excel. In past few few days, I build up on this Excel and created two new sheets named "BKA_MaxKapa" and "BKA_NomKapa". In this existing UserForm, i want to add one more function which is executed based on the value provided in "Gueltig_AB (JJJJKW)", "Gueltig_BIS (JJJJKW)", "NORMAL KAPA", "MAX KAPA".

    On Clicking "SHOW BKA FORM" it will open UserForm. For example along with other details, if I enter 100 in NORMAL KAPA, 200 in MAX KAPA, 202503 in Gueltig_AB (JJJJKW) and 202613 in Gueltig_BIS (JJJJKW). Then look for 202503 in row 4 in Sheet "BKA_MaxKapa" and 202613 in row 4 in Sheet "BKA_MaxKapa". If for example 202503 is found in cell U4 and 202613 is found in cell CE4 then copy 200 for that corresponding row from column U to Column CE for the new inputs. Similarly it should look for 202503 in row 4 in Sheet "BKA_NomKapa" and 202613 in row 4 in Sheet "BKA_NomKapa". If for example 202503 is found in cell U4 and 202613 is found in cell CE4 then copy 100 for that corresponding row from column U to Column CE. It should work with this logic, can we integrate this logic in our existing UserForm?

    Also in column C for every new entry, normally input from Column A is at beginning. I do not want anymore to attach column A value in Column C as starting text.

    Looking forward from the community expert. Thank you in advance!
    Attached Files Attached Files
    Last edited by vk1995; 01-29-2025 at 03:09 PM.

  22. #22
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    My apologies...This above makes no sense...
    Are you wanting all the sheets...BKA | BKA_MaxKapa & BKA_Nokapa to be updated at the same time...
    You keep on mentioning row 4...Is it always going to be row 4...or the row that the newly data was just placed in...
    I suggest...Explaining this again showing the required input into the sheets...
    Last edited by Sintek; 01-30-2025 at 04:09 AM.

  23. #23
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    @sintek thank you for the quick feedback. Let me try to explain with help of few snips and attached Excel File.

    Snip 1: User will click the "Show Form" button to enter the data in "BKA" Sheet. After entering the data, user click on "Daten Übernehmen (Transfer Data)" button in User Form to get this data in the excel.
    In the current version, if I write "Reifen" in Description then along with Reifen entry of Sachgebiet is automatically attached to it in the front and in excel we see "AUSG01 Reifen" instead of "Reifen". Now here I do not want to attach Sachgebiet to the description and want to see only the value which is entered in the Description field i.e. "Reifen".

    Snip 2: Based on the value entered in Field "Gueltig_AB" and "Gueltig_BIS", we want to copy the "MAXKAPA" (1500) and "NORMKAPA" (1000) value in Sheet named "BKA_MaxKapa" and "BKA_NomKapa" respectively.

    Snip 3: Now look for the "Gueltig_AB" and "Gueltig_BIS" value in row 4 in "BKA_MaxKapa" Sheet. For 202515 entered in Gueltig_AB Field is found in cell AF4 and 202653 is found in cell DR4. Once this range is found from AF4 to DR4, copy MaxKapa value (1500) in this range in the newly created row 5 as shown in the snip. Here Row 4 will always be same and can be used as a reference.

    Snip 4: Simialrly look for the "Gueltig_AB" and "Gueltig_BIS" value in row 4 in "BKA_NomKapa" Sheet. For 202515 entered in Gueltig_AB Field is found in cell AF4 and 202653 is found in cell DR4. Once this range is found from AF4 to DR4, copy NomKapa value (1000) in this range in the newly created row 5 as shown in the snip. Here Row 4 will always be same and can be used as a reference.

    I hope, I was able to explain now bit clearly. Please feel free to ask if there is any question.
    Thank you very much once again!
    Attached Images Attached Images
    Attached Files Attached Files

  24. #24
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    I forgot one more point to mention here that if I enter "202510" as Gueltig_AB and "999999" (six times 9) as Gueltig_BIS in the UserForm then copy the entered MaxKapa and NomKapa value from column AA as "202510" is found in CC4 till the end of time horizon in "BKA_MaxKapa" and "BKA_NomKapa" Sheet Respectively. In this file last calender week is "202653" in BKA_MaxKapa & BKA_NomKapa Sheet, so in this case it should copy values till 202653. If in future if I extend this calender week in row 4 for year 2027 then it should look for the last calender week in row4 and copy "MaxKapa" and "NomKapa" values in respective sheets till the end. So Gueltig_AB can be changed based on requirement but if there is 999999 mentioned in Gueltig_BIS then copy until the end of the time horizon in newly created rows with help of UserForm.

  25. #25
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    My apologies...This above makes no sense...
    Are you wanting all the sheets...BKA | BKA_MaxKapa & BKA_Nokapa to be updated at the same time...
    You keep on mentioning row 4...Is it always going to be row 4...or the row that the newly data was just placed in...
    I suggest...Explaining this again showing the required input into the sheets...
    I have tried to explain here more clearly, I hope it helps now to understand my use case much better. I appreciate your support and active feedback.

  26. #26
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Geez...And the plot thickens...
    Please Login or Register  to view this content.

  27. #27
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    Geez...And the plot thickens...
    Please Login or Register  to view this content.
    I know, its getting bit complicated but it would be great if you can assist me with this

    Should i replace this code with old one? Will then it will work?

    Thanks once again!

  28. #28
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    See attached...
    Attached Files Attached Files

  29. #29
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    See attached...
    This is super! I appreciate your quick help. Really grateful for your work and thanks once again.

    I wish you a nice day

  30. #30
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Happy to have assisted...

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Tx for rep +

  31. #31
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    Happy to have assisted...

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Tx for rep +
    Sorry for the trouble but earlier I have worked on this file and have this new attached version. Can we somehow integrate this new MaxKapa and NomKapa value copy logic to this file. Also in the version also, if I write "Reifen" in Description (Beschreibung) then along with Reifen entry of Sachgebiet is automatically attached to it in the front and in excel we see "AUSG01 Reifen" instead of "Reifen". Now here I do not want to attach Sachgebiet to the description and want to see only the value which is entered in the Description field i.e. "Reifen".

    I tried to integrate myself but somehow the MaxKapa and NormalKApa values are not copied in the respective sheets based on YearWeek mentioned in Gueltig_AB and Gueltig_BIS. Would you please help me to integrate our new solution in the attached excel file?

    Thanks once again!
    Attached Files Attached Files

  32. #32
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    No...
    After all the work I just did...you go and delete textboxes & change all the textbox numbers and incorporate more comboboxes...
    Obviously the previous supplied code won't work...
    Last edited by Sintek; 01-31-2025 at 10:40 AM.

  33. #33
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    No...
    After all the work I just did...you go and delete textboxes & change all the textbox numbers and incorporate more comboboxes...
    Obviously the previous supplied code won't work...
    I understand your frustration and do not want to cause any rework and inconvenience to you. It's just that I had an actual file to which these changes are also required.

    Nevertheless, I am very thankful for your help and quick response.Learned quite a lot from your work.

  34. #34
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Hey, I made some changes and it worked. It would not be possible without you.
    I really appreciate your help and thanks once again.
    Have a nice weekend!

  35. #35
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    Glad you got it sorted...Happy Coding...

  36. #36
    Registered User
    Join Date
    03-22-2024
    Location
    Germany
    MS-Off Ver
    365
    Posts
    41

    Re: Create a data entry form for Excel

    Quote Originally Posted by Sintek View Post
    Glad you got it sorted...Happy Coding...
    Hey, I am again sorry for the trouble. I don't want to cause any inconvenience. Working with data is apparently not so easy.
    I wish you a nice weekend!

  37. #37
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Create a data entry form for Excel

    You too...

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Create data entry form for relational database setup via Excel
    By mmthomas in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-08-2021, 05:07 AM
  2. [SOLVED] How to create Data Entry Form in Excel and refer from button?
    By jaryszek in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 10-07-2020, 04:51 AM
  3. [SOLVED] Create a data entry form.
    By cavalieregiuseppe in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-13-2018, 04:58 AM
  4. Replies: 1
    Last Post: 11-13-2012, 02:06 PM
  5. Create a Custom Data Entry Form
    By Nolesphan30 in forum Excel General
    Replies: 11
    Last Post: 02-05-2008, 06:27 PM
  6. Create a data entry form
    By Douglas in forum Excel General
    Replies: 1
    Last Post: 03-18-2006, 01:25 AM
  7. [SOLVED] create a data entry form template in Excel 2003?
    By david.bottomley@haltoncollege in forum Excel General
    Replies: 0
    Last Post: 01-19-2005, 06:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1