Tap Forms Database Pro for Mac, iPhone, iPad and Apple Watch › Forums › Using Tap Forms 5 › check mark
- This topic has 6 replies, 5 voices, and was last updated 1 year, 11 months ago by
Brendan.
-
AuthorPosts
-
July 5, 2023 at 11:28 AM #49667
VaughanParticipantis there a way to check / uncheck all “Check Mark” fields as a single action
July 5, 2023 at 12:54 PM #49668
tonytParticipantWhat I do is in multi column view, select the first check mark and clear it, then using the handle, drag down the column and they all clear to ‘off’. Welcome to a better way!
July 5, 2023 at 10:30 PM #49669
Daniel LeuParticipantAnother option is using a script. Following form script updates all checkmark fields of the current record. To clear all checkmarks, use
Update_All_Checkmarks(false);
. To set all checkmarks, useUpdate_All_Checkmarks(true);
function Update_All_Checkmarks(value) { let fields = form.getFieldsForType('check_mark'); for (field of fields){ console.log("Clearing check mark: " + field.name); record.setFieldValue(field.getId(), value); } document.saveAllChanges(); } // clear checkmarks Update_All_Checkmarks(false); // set checkmarks //Update_All_Checkmarks(true);
-
This reply was modified 1 year, 11 months ago by
Daniel Leu.
-
This reply was modified 1 year, 11 months ago by
Daniel Leu.
-
This reply was modified 1 year, 11 months ago by
Daniel Leu.
-
This reply was modified 1 year, 11 months ago by
Daniel Leu.
Cheers, Daniel
---
See https://lab.danielleu.com/tapformspro/ for scripts and tips&tricksJuly 6, 2023 at 11:35 AM #49675
BrendanKeymaster@Tonyt, also you can use the Fill Down function in the Edit menu to have Tap Forms copy the state of the checkmark cell to all the selected cells below it. Instead of dragging the yellow handle, which may be challenging for some users.
July 6, 2023 at 6:28 PM #49676
Glen ForisterParticipantI would like to know more about the Edit/Fill up or Fill Down function. I can’t find any information in the ver 5 manual about it. Is there an explanation for it or a file that demonstrates it? I certainly don’t want to play with my data files to learn.
Thanks. Sounds useful.
July 7, 2023 at 7:44 AM #49677
VaughanParticipantThanks I’ll give them a try
July 7, 2023 at 7:29 PM #49678
BrendanKeymaster@glen, it works just like in Excel or Numbers. Select a cell. Then shift-click to select the cells below or above the first selected cell. Then use the Fill Up/Down function to have Tap Forms copy the same value from the first cell to the other cells.
You can also just make a new, temporary form and experiment with that to see how it works without having to change your existing document.
-
This reply was modified 1 year, 11 months ago by
-
AuthorPosts
You must be logged in to reply to this topic.