DocHub is an all-in-one PDF editor that allows you to inject checkbox in OMM, and much more. You can underline, blackout, or remove paperwork fragments, add text and images where you want them, and collect data and signatures. And because it works on any web browser, you won’t need to update your hardware to access its robust tools, saving you money. With DocHub, a web browser is all it takes to handle your OMM.
Log in to our service and adhere to these instructions:
It couldn't be simpler! Enhance your document management now with DocHub!
welcome back to dp tutorials in the last video we have seen how to link all check boxes with a macro in excel now in this video let us learn how to run a macro when we click on a check box to get date in a cell in this example i am considering this small to-do list where the check boxes in column c are linked to cells in column d now let us try building a macro that puts the actual date in the column f when you tick the check box in column c go to the vba editor window insert a new module and type the code like this sub check box date we call d equal to 3 that is the number of columns to the right for date enter case one that is when box is checked press enter condition is range d dot value equals to date press enter case else that is when box is not checked press enter rng d dot clear contents okay when box is checked we should be having the date and when box is unchecked it should clear the contents of the cell press enter and type end select youamp;#39;re done iamp;#39;ll