Hai,
I have a two TextInput Box with the name of
*Subject _TextInput Box and
*Invoice_Textbox
Subject_TextInput has Only 5 values for user to enter. "ENG","TAM","MATH","SCI","EVS".
So 1)when user types any one of the above values in Subject_TextInput Box then I need a
--->Invoice_TextInput box values Automatically wants to display the value as "Inter" .
2)Otherwise if the User enters any other values beyond the 5 values then
--->Invoice_TextInput box values Automatically wants to display the value as "Outer"
Please Help.
Solved! Go to Solution.
Please consider setting your Default property Formula on Invoice_Textbox to the following:
If(Subject _TextInput.Text in ["ENG","TAM","MATH","SCI","EVS"],
"Inter",
"Outer"
)
I hope this is helpful for you.
Please consider setting your Default property Formula on Invoice_Textbox to the following:
If(Subject _TextInput.Text in ["ENG","TAM","MATH","SCI","EVS"],
"Inter",
"Outer"
)
I hope this is helpful for you.
You could try an IF formula.
If(Subject_TextInput.Text = "ENG", "Inter" ,
Subject_TextInput.Text = "TAM", "Inter" ,
Subject_TextInput.Text = "MATH", "Inter" ,
Subject_TextInput.Text = "SCI", "Inter" ,
Subject_TextInput.Text = "EVS", "Inter" ,
"Outer" )
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
194 | |
52 | |
41 | |
39 | |
35 |
User | Count |
---|---|
263 | |
86 | |
71 | |
69 | |
66 |