Hello community.
I have a SharePoint List (SP). In this SP list I have a column named "KD-Typ". The value True or False is saved in this column.
I call up this column via a screen with a shape. The value of the column is shown to me in a datacard.
Now I would like to switch a toggle button depending on the value from this column.
But I can't do it.
Can someone tell me how to solve this?
Best regards
RoScha
Solved! Go to Solution.
In the default property of the toggle control enter
If(galKunde_scrSucheKunde.selected.KD_Typ = false, false,true)
You have to make a small adjustment in your formula and it will work.
And the customization looks like this:
old: If(galKunde_scrSucheKunde.selected.KD_Typ = false, false,true)
New: If(galKunde_scrSucheKunde.selected.KD_Typ = "false", false,true)
Many thanks @JordanDeVan
a little further in the app. It's getting slow. I'm very happy about that.
Best regards
RoScha
I don’t understand your goal from the description of the problem. Can you please provide a screenshot?
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
You're going to have to edit the default property of the toggle button. I normally use an If function,
How are you displaying the data in the app? In a gallery?
If the value "KD-Typ" is false, then the toggle button should be on "Private customer".
If it says true then the toggle button should be on "corporate customer".
That is the starting point
What do you have in the items property of your form?
In the default property of the toggle control enter
If(galKunde_scrSucheKunde.selected.KD_Typ = false, false,true)
You have to make a small adjustment in your formula and it will work.
And the customization looks like this:
old: If(galKunde_scrSucheKunde.selected.KD_Typ = false, false,true)
New: If(galKunde_scrSucheKunde.selected.KD_Typ = "false", false,true)
Many thanks @JordanDeVan
a little further in the app. It's getting slow. I'm very happy about that.
Best regards
RoScha
User | Count |
---|---|
251 | |
102 | |
94 | |
48 | |
37 |