Skip to main content

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

NameDescription
Input
Form IDThe 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.
TitleThe title of the linear scale question. Provide a descriptive title for the question. String variables containing the title. This is a required field.
DescriptionThe description of the linear scale question. Provide additional information or context for the question. String variables containing the description.
RequiredSpecifies whether the question is required or not. It is a boolean value.
LocationThe position where the question will be created in the form. It is an integer value.
HighEnter the scalar high value between 2 to 10 for the linear scale. This is a required field.
High LabelEnter the label for the high end of the linear scale. String variables containing the high label.
Low LabelEnter the label for the low end of the linear scale. String variables containing the low label.
LowEnter the scalar low value (0 or 1) for the linear scale. This is a required field.
Misc
Display NameProvides 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
DelaySpecifies 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
ResultReturns the response as Form Details. Variables of type BatchUpdateFormResponse to store the response.

How to use:

  1. Drag and drop the "Linear Scale Question" activity onto the workflow.
  2. Configure the properties by providing the necessary details such as Form ID, Title, Description, etc.
  3. Optionally, configure the delay before starting the activity.
  4. 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.