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 / test results using AI ...
Power Apps
Suggested Answer

test results using AI custom prompt

(0) ShareShare
ReportReport
Posted on by 2,249
I am using Big 5 model personality test openness, conscientious, extraversion, agreeableness, neuroticism so how do i generate test results below are the questions. also im using dataverse as data source
 
Questions
1.openness
a)High b)Low c)medium
2.conscientious
a)High b)Low c)Medium
3.extraversion
a)High b)Low c)Medium
4.agreeableness
a)High b)Low c)Medium
5.neuroticism
a)High b)Low c)medium
 
My query is how to get the scores using custom prompt
Categories:
I have the same question (0)
  • Suggested answer
    SaiRT14 Profile Picture
    1,990 Super User 2025 Season 1 on at
    try the following steps:
     
    Create a Dataverse Table
    Columns:
    UserID (Text/Email)
    Openness, Conscientiousness, Extraversion, Agreeableness, Neuroticism (Choice: High, Medium, Low)
    OpennessScore, ConscientiousnessScore, ExtraversionScore, AgreeablenessScore, NeuroticismScore (Number)
     
    Assign these values to choices: High = 3, Medium = 2, Low = 1
     
    Build a Form: Add dropdowns for each personality trait. Submit button. Submit Logic (PowerFx):
    button's OnSelect:
    Patch(
        PersonalityResults,
        Defaults(PersonalityResults),
        {
            UserID: User().Email,
            Openness: Dropdown_Openness.Selected.Value,
            Conscientiousness: Dropdown_Conscientious.Selected.Value,
            Extraversion: Dropdown_Extraversion.Selected.Value,
            Agreeableness: Dropdown_Agreeableness.Selected.Value,
            Neuroticism: Dropdown_Neuroticism.Selected.Value,
            OpennessScore: If(Dropdown_Openness.Selected.Value = "High", 3, If(Dropdown_Openness.Selected.Value = "Medium", 2, 1)),
            ConscientiousnessScore: If(Dropdown_Conscientious.Selected.Value = "High", 3, If(Dropdown_Conscientious.Selected.Value = "Medium", 2, 1)),
            ExtraversionScore: If(Dropdown_Extraversion.Selected.Value = "High", 3, If(Dropdown_Extraversion.Selected.Value = "Medium", 2, 1)),
            AgreeablenessScore: If(Dropdown_Agreeableness.Selected.Value = "High", 3, If(Dropdown_Agreeableness.Selected.Value = "Medium", 2, 1)),
            NeuroticismScore: If(Dropdown_Neuroticism.Selected.Value = "High", 3, If(Dropdown_Neuroticism.Selected.Value = "Medium", 2, 1))
        }
    )
     
    Use a gallery or labels to show scores for each trait:
    LookUp(PersonalityResults, UserID = User().Email).OpennessScore
     
    if you need more details, let me know.

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!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 525 Most Valuable Professional

#2
Haque Profile Picture

Haque 273

#3
Kalathiya Profile Picture

Kalathiya 232 Super User 2026 Season 1

Last 30 days Overall leaderboard