Podcast
Questions and Answers
What primary purpose do portal apps serve within organizations?
What primary purpose do portal apps serve within organizations?
What is a common misconception about the term 'portal' in computing?
What is a common misconception about the term 'portal' in computing?
How does the creation process of a portal app begin in Power Apps?
How does the creation process of a portal app begin in Power Apps?
Which statement accurately describes the capabilities of portal apps regarding data connections?
Which statement accurately describes the capabilities of portal apps regarding data connections?
Signup and view all the answers
What significant change occurred regarding portal apps in relation to the PL-900 exam?
What significant change occurred regarding portal apps in relation to the PL-900 exam?
Signup and view all the answers
After a portal app has been created, what is the next step a developer can take?
After a portal app has been created, what is the next step a developer can take?
Signup and view all the answers
What is one function of formulas used within Power Apps?
What is one function of formulas used within Power Apps?
Signup and view all the answers
What limitation exists concerning the number of portal apps a user can create in one environment?
What limitation exists concerning the number of portal apps a user can create in one environment?
Signup and view all the answers
What is the purpose of the Value function in the formula Sum(Value(TextInput1.Text), Value(TextInput2.Text), Value(TextInput3.Text))?
What is the purpose of the Value function in the formula Sum(Value(TextInput1.Text), Value(TextInput2.Text), Value(TextInput3.Text))?
Signup and view all the answers
In the If function example If(Sum(Value(TextInput1.Text), Value(TextInput2.Text), Value(TextInput3.Text)) >= 65, 'Pass', 'Fail'), what does the '65' represent?
In the If function example If(Sum(Value(TextInput1.Text), Value(TextInput2.Text), Value(TextInput3.Text)) >= 65, 'Pass', 'Fail'), what does the '65' represent?
Signup and view all the answers
Which control property is typically configured to display today's date in a Date Picker control by default?
Which control property is typically configured to display today's date in a Date Picker control by default?
Signup and view all the answers
How can the appearance of controls in Power Apps be modified?
How can the appearance of controls in Power Apps be modified?
Signup and view all the answers
Which of the following formula values would change the Date Picker control to display time in a 24-hour format?
Which of the following formula values would change the Date Picker control to display time in a 24-hour format?
Signup and view all the answers
What does the Sum function do in the context of the example given?
What does the Sum function do in the context of the example given?
Signup and view all the answers
If a developer wants to display the date as 'Friday, July 3, 2020' in a Date Picker control, which property should they choose?
If a developer wants to display the date as 'Friday, July 3, 2020' in a Date Picker control, which property should they choose?
Signup and view all the answers
What result would be displayed if TextInput1 had a value of 30, TextInput2 had a value of 20, and TextInput3 had a value of 10 in the If function example provided?
What result would be displayed if TextInput1 had a value of 30, TextInput2 had a value of 20, and TextInput3 had a value of 10 in the If function example provided?
Signup and view all the answers
Which of the following would NOT be a valid transformation for a control’s property using formulas in Power Apps?
Which of the following would NOT be a valid transformation for a control’s property using formulas in Power Apps?
Signup and view all the answers
In Power Apps, what distinguishes the properties of controls from their appearance settings?
In Power Apps, what distinguishes the properties of controls from their appearance settings?
Signup and view all the answers
Study Notes
Portal Apps in Power Apps
- Portal apps provide external and internal users access to Microsoft Dataverse data via a website.
- They eliminate the need for many calls and in-person interactions.
- Portal apps were part of a Dynamics 365 add-on but are now integrated into Power Apps.
- Only one portal app can be created per environment.
- Portal app data is stored entirely in Dataverse, no external app connections are possible.
- Creating a portal app requires provisioning the Dataverse, tables, data, and a starter template.
- The process starts with selecting "Blank App" and "Blank Website" in the Power Apps portal, confirming environment setup.
- Existing Power Apps portal apps are now a separate product: Power Pages.
- Portal app features are removed from PL-900 exam content.
Formulas in Power Apps
- Power Apps formulas are similar to Excel formulas.
- Formulas in Power Apps can manipulate cell contents and control functionality (buttons, dropdowns, combo boxes).
- Formulas can be used to perform calculations (like summing values from input boxes).
- The
Value()
function converts text inputs into numerical values for calculations. - The
Sum()
function calculates sums from multiple values. -
IF
functions allow conditional logic: if a sum meets a condition (e.g. greater than or equal to 65), aLabel
control will display "Pass", otherwise "Fail". - Formulas can configure control properties.
- Controls like "Date picker" have properties like
DefaultDate
with formulas (e.g.,Today()
). - Format properties (
DateTimeFormat.ShortDate
) determine date display format within the control. - Alternate formats for dates include
ShortDateTime
,ShortDateTime24
,LongDate
.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
Test your knowledge on Power Apps portal apps and formulas. This quiz covers key aspects like data management in Dataverse, the integration of portal apps into Power Apps, and the similarities between Power Apps formulas and Excel formulas. Perfect for users looking to deepen their understanding of Power Apps functionalities.