I created a powerapps with a data connection to a SP list.
As the list contains many columns, I have multiple screens, each showing a part of the list in a form.
I'm saving the form to SP on each screen but a “draft mode” status can be added (Column in SP list called FormStatus choice between Draft, Submitted, default = Draft), so that although it has been created in SharePoint, with it being in draft, this indicates that it’s not finished and not officially submitted yet.
Each screen= varListItem -> stores the whole record of the current item
On the last screen, I want to be able to Submit the form. I have 3 buttons, visibility depends on the FormStatus value.
Tryin to achieve this via:
Visible: varListItem.'FormStatus'="Draft"
Keep getting the red circle/white cross "Invalid argument type".
Can someone help with syntax here?
Thanks in advance!
Jimmy
Solved! Go to Solution.
What kind of column is FormStatus? If it is a choice column, then you need to use the following for your formula:
varListItem.FormStatus.Value="Draft"
I hope this is helpful for you.
What kind of column is FormStatus? If it is a choice column, then you need to use the following for your formula:
varListItem.FormStatus.Value="Draft"
I hope this is helpful for you.
As visible is a Property you'd need:
Visible: If(varListItem.'FormStatus'="Draft", false, true)
(or vice versa)
Just and FYI on your formula, you can save yourself some time by not adding all the "If" "true" false" stuff.
When you put a condition such as something=something in your formula, it will already evaluate to true or false, so there is no need to put in an if statement to see if something is true so that you can then return true...it is already true (or false).
Just be aware of parenthesis are sometimes needed. For example, if you wanted the ! (not) condition of the above, then using !something=something will usually give you an error because PowerApps is trying to "not" the first something...which is usually not valid. So, your formula would become !(something=something)
This way PowerApps then is forced into the order of precedence that you want.
Hey @RandyHayes , thanks for the tip - I didn't know that.
Personally I would spend the few seconds typing the If statement so as to help the 'Future me' - when I come back to the code and try to understand it in a few months 🙂
User | Count |
---|---|
221 | |
99 | |
94 | |
55 | |
36 |
User | Count |
---|---|
273 | |
105 | |
104 | |
60 | |
60 |