I'm trying to show a checkmark or a cross on my user page if the user is approved/not approved.
Like here:
I'm trying to use the "Visible" box with the following code
If(DataCardValue26 = "true",true,false)
The datacardvalue26 contains the data true/false.
But this is not working for me. I'm getting an error on the = part of the code. But I don't know what I'm doing wrong.
Solved! Go to Solution.
Hi @Frello ,
Could you please share a bit more about your scenario?
Do you want to display a Checkmark within the gallery item when the corresponding user has been approved, otherwise, display a corss within the Gallery item?
Further, which column does the DataCardValue26 connect to in your data source? Which column do you use to identify if the user has been approved in your data source?
I assueme that you use a Text type column (Called "IsApproved") in your data source to identify if the user has been approved.
Based on the formula that you mentioned, I think there is something wrong with it. I have made a test on my side, please take a try with the following workaround:
Within your Gallery control, add a Checkmark icon and a Cross Icon. Set the Visible property of the Checkmark icon to following:
If(
ThisItem.IsApproved="true",
true,
false
)
Set the Visible property of the Cross icon to following:
If(
ThisItem.IsApproved= "true",
false,
true
)
Note: The IsApproved represents the Text type column in your data source, which used to identify if the user has been approved. I assume that the true value in your Gallery is bound to ThisItem.IsApproved formula.
Best regards,
Can you try
DataCardValue26.Value=true
or
DataCardValue26=true
Unless DataCardValue26 is a text-type, where you write "true" in it?
Then try
DataCardValue26.Value="true"
or
DataCardValue26.Text="true"
DataCardValue26.Text="true"
That is working.
Except I probably am doing something wrong.
It's showing an X for all of the users now, I want to show it per user. What am I doing wrong ?
I thought by adding the icons to my gallery it would pick it per user?
So you are wanting to show the X for those with true only?
Is it Title6 that is the 'true' bit, and NotApproved the X icon? So Not Approved's Visible should be Title6.text="true" ?
I want to show an X if the user is not approved.
I don't want to show the title in the picture. I just used it to check if the icons showup.
What is the text saying 'true' and 'false' in the gallery? And what is its text set to?
Hi @Frello ,
Could you please share a bit more about your scenario?
Do you want to display a Checkmark within the gallery item when the corresponding user has been approved, otherwise, display a corss within the Gallery item?
Further, which column does the DataCardValue26 connect to in your data source? Which column do you use to identify if the user has been approved in your data source?
I assueme that you use a Text type column (Called "IsApproved") in your data source to identify if the user has been approved.
Based on the formula that you mentioned, I think there is something wrong with it. I have made a test on my side, please take a try with the following workaround:
Within your Gallery control, add a Checkmark icon and a Cross Icon. Set the Visible property of the Checkmark icon to following:
If(
ThisItem.IsApproved="true",
true,
false
)
Set the Visible property of the Cross icon to following:
If(
ThisItem.IsApproved= "true",
false,
true
)
Note: The IsApproved represents the Text type column in your data source, which used to identify if the user has been approved. I assume that the true value in your Gallery is bound to ThisItem.IsApproved formula.
Best regards,
@v-xida-msft I'm sorry for the late response.
Thanks for the detailed explanation, your code works for me and got the icons displaying correctly now!
User | Count |
---|---|
196 | |
122 | |
89 | |
48 | |
41 |
User | Count |
---|---|
285 | |
162 | |
138 | |
80 | |
73 |