web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Power App Feedback For...
Power Apps
Answered

Power App Feedback Form to pop up just once for users who have already filled the form

(0) ShareShare
ReportReport
Posted on by 14

Hi , I have built a Feedback Form which is integrated to my Power Bi Dashboard. 
So whenever someone clicks on my Power BI dashboard link , it opens the Power App Feedback Form first.
What I want is that whenever someone fills that Feedback form, the user should not get to see the Feedback form for a month and for a user who has not filled the Feedback Form, it should always appear. Not sure how to integrate this functionality with my Power App Form.
I have used the following code on my Submit Button -

Patch('Feedback Form - L&D Coaching Inputs',
Defaults('Feedback Form - L&D Coaching Inputs'),
{
    Title: User().Email,
    'Associates Name':Concat(userlist,Value,";"),
    'Skip Level Associates': Concat(skipassociate,Value,";")
   
    });

 
If I am missing any important information to mention, please let me ... Quite new to Power Apps

 

Categories:
I have the same question (0)
  • Verified answer
    Inogic Profile Picture
    1,265 Moderator on at

    Hi @Vatsala1 

    You can try below code in Canvas app,

    // Check if the user has submitted feedback in the last month
    If(
    IsBlank(LookUp(LocalStorage, Title = User().Email && FeedbackDate >= Today() - 30)),
    // If the user has not submitted feedback in the last month, show the Feedback Form
    Launch("https://app.powerbi.com/groups/me/reports/81009779-72d3-467c-a5ea-e1bb0118071b/ReportSectiondc51371e..."),
    // If the user has submitted feedback in the last month, do nothing
    Notify("You have already submitted feedback in the last month.", NotificationType.Information)
    );

    // Patch the feedback data to your data source
    Patch(
    'Feedback Form - L&D Coaching Inputs',
    Defaults('Feedback Form - L&D Coaching Inputs'),
    {
    Title: User().Email,
    'Associates Name': Concat(userlist, Value, ";"),
    'Skip Level Associates': Concat(skipassociate, Value, ";")
    }
    );

    // Update local storage with the current feedback submission date
    Patch(
    LocalStorage,
    Defaults(LocalStorage),
    {
    Title: User().Email,
    FeedbackDate: Today()
    }
    );

    Thanks!

    Inogic Professional Service Division

    An expert technical extension for your techno-functional business needs

    Power Platform/Dynamics 365 CRM

    Drop an email at crm@inogic.com

    Service:  http://www.inogic.com/services/ 

    Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

  • Vatsala1 Profile Picture
    14 on at

    Thank you!! It worked... 🙂

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.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 505

#2
WarrenBelz Profile Picture

WarrenBelz 502 Most Valuable Professional

#3
Haque Profile Picture

Haque 324

Last 30 days Overall leaderboard