Announcements
Hi AG-27030710-0,
You can build a complete survey lifecycle (create, send, manage) inside Power Apps using different approaches depending on your flexibility and integration needs.
Surveys: Title, Description, CreatedBy, Status Questions: QuestionText, Type (Text, Choice, Rating), SurveyID Responses: UserID, QuestionID, Answer Recipients: SurveyID, UserEmail, SentDate
You can distribute surveys using:
Inside Power Apps:
As an additional note, to avoid extra costs such as Dataverse licensing, you can use SharePoint as your data source.
If this solution helped you resolve your issue, kindly mark it as accepted — it makes it easier for others to find and also closes the discussion. If you found it useful, a Like ❤️ would be greatly appreciated!
🤝 Let’s connect on LinkedIn || 📘 Explore more on my articles
Please let us know if the issue still exists. If it has been resolved, kindly close the thread by accepting the solution
erDiagram USER ||--o{ SURVEY_INSTANCE : "completes" SURVEY ||--o{ QUESTION : "contains" SURVEY ||--o{ SURVEY_INSTANCE : "has responses" SURVEY_INSTANCE ||--o{ ANSWER : "records" QUESTION ||--o{ ANSWER : "is answered in" USER { int user_id PK string name string email } SURVEY { int survey_id PK string title string description datetime created_at int created_by FK -> USER.user_id } QUESTION { int question_id PK int survey_id FK -> SURVEY.survey_id string question_text string question_type // e.g. text, multiple choice, rating int display_order } SURVEY_INSTANCE { int instance_id PK int survey_id FK -> SURVEY.survey_id int user_id FK -> USER.user_id datetime started_at datetime completed_at string status // e.g. in-progress, completed } ANSWER { int answer_id PK int instance_id FK -> SURVEY_INSTANCE.instance_id int question_id FK -> QUESTION.question_id string answer_value }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 516
WarrenBelz 428 Most Valuable Professional
Valantis 292