Join the Team Forms community

141
members
11
new
J
d
B
R
M
Members
Tom
T
Tom
Offline, last seen 6 days ago
Joined July 16, 2024
T
Tom
3 weeks ago
Under consideration

Power Automate for Categories

Having the ability to trigger a flow based on the categories of the Form would be a good feature, Would help with bulk organization of forms. See below as an example

T
Tom
2 months ago
Unsolved

Keyboard over Components

When using keyboard on forms. It often displays over the cell you are inputting data into, especially components towards the bottom of sheet. Is there a way around this?. I have made buttons to automatically enter some data in these cases but its frustrating when you cant see what you are typing.

1 comment
E
T
Tom
2 months ago
E
Solved

Date Format for Excel

I need a Date component to translate to Excel through power automate. The Date component automatically picks up the date with moment() and the power automate is creating a new row in a table when form is submitted but the flow isn't working because of the format.

1 comment
E

I want to create a Feedback that displays only on the PDF generated after submitting. I have The condition set to display when a question (select box) is answer wrong, this works. I also have it set to Hidden but not Not Hidden in PDF. When i try previewing the form the feedback is still showing in the live form when the condition is met

3 comments
T
E
T
Tom
2 months ago
Under consideration

Existing PDF Form

I would like the ability to upload an existing PDF form and add interactive components over it for external users to fill out. I have many older business documents and spreadsheets that could be adapted this way. The biggest issue we face with external users filling out our business forms is that they often leave out required sections. This program would help address that problem by ensuring all necessary fields are completed.

4 comments
E
T

In this case Values 'a' and 'b' are the correct answer, which i would want to give a score of '1' for each of them.

I have tried the scripts below without any success

value = 
(['a'].includes(data.q1) ? 1 : 0) +
(['b'].includes(data.q1) ? 1 : 0);
value = 
  (data.q1 === 'a' ? 1 : 0 )
+ (data.q1 === 'b' ? 1 : 0 );
6 comments
E
T