Customize UI
Change layout, hide fields & redirect on submit
Embed in website
Embed Google Forms in your website
Assign points
Assign different points for each answer & calculate score
File upload
Upload files in Google Forms without login
Email notification
Email Google Forms response to your users & co-workers
All products
Enhance Google Forms into CRM
eSignature
Collect legally binding signature in Google Forms
Fillable PDF
Generate customized PDF from Google Forms responses
Signature workflow
Collect multiple signatures in Google Forms
Intake form
Create intake forms that accepts eSignature from patients
HIPAA form
Mask PHI fields in email & links for HIPAA compliance
Prefill & email
Prefill Google Forms & send as email to customers
Add legal & HIPAA compliance to Google Forms
Meal Prep Software
Meal prep software for weekly changing menu
Online Canteen
Take canteen orders for weekly changing menu
Order form
Calculate order amount in Google Forms
WhatsApp form
Take online orders from your WhatsApp contacts
Payment form
Accept payment in Google Forms
Website builder
Create website with community features
Take food orders for frequently changing menu
Autofill form
Transform emails into Google Forms responses using AI
Support forum
If your answer turns aggressive, we'll help you tone it down.
Finetuning
Build your own AI model using data in Google Sheets
Extract structured data from customer conversations
The first step is to calculate the last date of this month. We can pass the year, month and day to the date function. TODAY().year() will return the current yearTODAY().month() will return the current monthDATE(TODAY().year(), TODAY().month()+1, 1) will return the first day of next month.We can then use the SUBTRACT function to find the last day of this month.DATE(TODAY().year(), TODAY().month()+1, 1).subtract(1,"days")There is another way to calculate the last day of this month without using the SUBTRACT function.DATE(TODAY().year(), TODAY().month()+1, 0) will return the last day of this month.We can use the getDate() or date() function to find the day of the month for a specified date.DATE(TODAY().year(), TODAY().month()+1, 0).date() will return the last day of the month.
We can use the getDate() or date() function to the find day of the month for a specified date. TODAY().date() will return the current day. To calculate the remaining days in the month, we can use the below formula.DATE(TODAY().year(), TODAY().month()+1, 0).date() - TODAY().dateSince we have already calculated the number of days in this month as an answer for a question in the form, we can refer that instead of writing the formula again.days_in_this_month - TODAY().date()Note: To enter days_in_this_month, type @ in the calculate option and select the number of days in this month question from the list.
Click Submit to finish.