Linear Scale Question
AutomatR.GoogleForms.Activities.LinearScaleQuestion
The "Linear Scale Question" activity in AutomatR is part of the Google Forms activities package, allowing you to create a linear scale question within a Google Form. This activity streamlines the process of adding scale-based questions, enhancing the efficiency of form creation workflows.
Properties
Name | Description |
---|---|
Input | |
Form ID | The ID of the Google Form to which the linear scale question should be added. Only supports strings or string variables. This is a required field. |
Title | The title of the linear scale question. Provide a descriptive title for the question. String variables containing the title. This is a required field. |
Description | The description of the linear scale question. Provide additional information or context for the question. String variables containing the description. |
Required | Specifies whether the question is required or not. It is a boolean value. |
Location | The position where the question will be created in the form. It is an integer value. |
High | Enter the scalar high value between 2 to 10 for the linear scale. This is a required field. |
High Label | Enter the label for the high end of the linear scale. String variables containing the high label. |
Low Label | Enter the label for the low end of the linear scale. String variables containing the low label. |
Low | Enter the scalar low value (0 or 1) for the linear scale. This is a required field. |
Misc | |
Display Name | Provides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name. |
Optional | |
Delay | Specifies the amount of time (in seconds) to wait before starting the activity. Useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1. |
Output | |
Result | Returns the response as Form Details. Variables of type BatchUpdateFormResponse to store the response. |
How to use:
- Drag and drop the "Linear Scale Question" activity onto the workflow.
- Configure the properties by providing the necessary details such as Form ID, Title, Description, etc.
- Optionally, configure the delay before starting the activity.
- Execute the workflow to add a linear scale question to the specified Google Form.
Example:
Consider an example where the "Linear Scale Question" activity is used to add a linear scale question to a Google Form:
Linear Scale Question:
Form ID: formIdVariable
Title: "Rate Your Experience"
Description: "On a scale of 1 to 10, how would you rate your experience?"
Required: true
Location: 1
High: 10
High Label: "Excellent"
Low Label: "Poor"
Low: 1
Result: formDetailsVariable
In this example, the activity adds a linear scale question titled "Rate Your Experience" to the specified Google Form. The question requires a response, and the scale ranges from 1 (Poor) to 10 (Excellent). The response details are stored in the variable formDetailsVariable
for further handling in the workflow.