Can anyone please help me tidy up Google Spreadsheet data responses after a Google Form with a checkbox has been filled?
When someone attends training, a Google Form is filled which automatically populates a Google Spreadsheet with:
the training event
the date of the event and
all of the employees who attended that event.
There could be a number of employees attending one event so in the form, there is a checkbox giving the option to tick multiple employees. Below is an example of the Google 'Response Form' spreadsheet after the Form has been submitted:
The issue is that the Response Form is difficult to look at so I want to tidy it up and make it easy to use the Query function. Ideally, I would like it to look like this:
Can anyone help me?
you can use this formula:
=ARRAYFORMULA(QUERY(SPLIT(TRANSPOSE(SPLIT(TRIM(QUERY(TRANSPOSE(QUERY(TRANSPOSE(
IF(IFERROR(SPLIT(D:D, ";"))<>"", "♦"&B:B&"♥"&C:C&"♥"&
REGEXREPLACE(SPLIT(D:D, ";"), "^, ", ), )),,999^99)),,999^99)), "♦")), "♥"),
"order by Col2", 1))
Related
I have script for my datatable. So, I store my attribute from API and I need to grouping column into one column. Can django do that? As long I know, that could but in JQuery, but it's impossible to bring my datatable to JQuery basics so many attributes.
Here is my code :
['No. Telp <br/>Nasabah 1','notelp1_debitur',''],
['No. Telp <br/>Pasangan 2','notelp2_pasangan',''],
['No. Telp <br/>Pasangan 1','notelp1_pasangan',''],
['No. Telp <br/>Nasabah 2','notelp2_debitur',''],
And I want to be grouping it like this :
Thanks in advance.
this is not related to django or any other backend frameworks how we are gonna show the data in frontend.
this is the html table, and how to put data in that table to create something like the photo.
you could create a table, or two.
for a cell of html table you could specify the col(s), and row(s) it needs to capture. read about this on w3schools.com
I'm currently working on a project using Google form to gather data into an excel sheet, and then organize the data based on answers of the form. After an employee selects a department and submits a form, I would like to filter each response by department to its own page within the workbook.
I've listed my current formula below. As of now, it will only import the data on the same row when it is sorted into a new page, thus leaving many blank spaces in between information. Is there a way to make sure it will not skip rows during the import?
=IF(REGEXMATCH('Form Responses 1'!D2:D1101, "Department Name"), 'Form Responses 1'!B2:B1101," ")
try:
=FILTER('Form Responses 1'!B2:B1101,
REGEXMATCH('Form Responses 1'!D2:D1101, "Department Name"))
I am trying to create a days_of_week model for my alarm app where users can just select the days of the week they want the alarm to go off. I want to use checkboxInput widget for it, but I can't find a way to find a field like that. Can someone show me how to make a field like that?
You can use CommaSeparatedIntegerField. More info in https://docs.djangoproject.com/en/dev/ref/models/fields/
You need to use a checkboxselectmultiple:
https://docs.djangoproject.com/en/dev/ref/forms/widgets/#checkboxselectmultiple
short example:
select = forms.MultipleChoiceField(choices=CHOICES, widget=forms.CheckboxSelectMultiple)
where CHOICES would be your days of the week.
I'm trying to create a mileage reimbursement log in sharepoint13 but can't use infopath because I was told by my super that it would require licenses for all users. So the form I wanted to create is formatted something like this:
Emp Name_______________
Date____________________
Ceneter Num_____________
======================================================================================
From Dest______________ To Dest____________________ Mile___________________________
click to add row
Total miles_______________________
======================================================================================
trip purpose___________________________________________________________________________
comments________________________________________________________________________________
SUBMIT
I'm having a problem with the center section, id like the from dest, to dest, mile to repeat by clicking the add row link but I can't find much info out there to do this other than using using info path. After I create this I need to set up a workflow to email the director for approval and then once approved send email to finance dept to process form
I am using the open_graph Explorer tool to test this out and I need to be able to get the first_name, last_name and installed from 1000 users. At the moment I group up the users in grouped of 50 for a single query and batch them into up to 20 queries in a batch request.
A single query looks as follows
?ids=100003825998801,100003825998802,547884299,100003825998803,100003825998804,100003825998805,100003825998806&fields=first_name,last_name,installed
Now, the question is, when you use multiple ids in a single query like I did, facebook seems to "force" certain fields on you, large fields, such as "metadata" and "fields". Is it possible to remove these fields from the result set of the query?
Also, any advice on how to make this more efficient would also be great.
Thank.
Have you considered using FQL instead …?
SELECT first_name, last_name, is_app_user FROM user
WHERE uid IN (100003825998801,100003825998802,547884299,100003825998803,
100003825998804,100003825998805,100003825998806)
– that gives you just the info you want, you only have to watch out for the fact that the installed field is named is_app_user in FQL.