In my app I have integrated indicator icons which displays if a field is left blank but should be filled depening on the status of the flow. I have this indicator icon integrated into my Gallery.
I am using the Fill property to fill the icon (circle) red or transparent, depending on the need to alert.
Fill property of the icon in the Gallery:
If(ThisItem.ERHSCutDownVersion.Value=Blank(),
If(Or(ThisItem.Status.Value="3 - Documentation",ThisItem.Status.Value="4 - PQQ evaluation finished",ThisItem.Status.Value="5 - Bids evaluation finished",ThisItem.Status.Value="6 - Closed"),
Coral,
Transparent),
Transparent)
This works with this kind of column. The column ERHSCutDownVersion is a choice column where you can select just one entry. Now, I have still another column (ContractAwardTo) that I would like to verify which is of type choice as well. However, in this other column ContractAwardTo multiple values can be selected. The same way of verification is not working for this kind of complex column type.
What is the work around to achive the intened outcome? Thank you for any hints.
Solved! Go to Solution.
Hi @VFPowerAppsUser ,
Using the column you posted, try this structure
If(
ThisItem.ERHSCutDownVersion.Value = Blank(),
If(
Or(
"3 - Documentation" in ThisItem.Status.Value,
"4 - PQQ evaluation finished" in ThisItem.Status.Value,
"5 - Bids evaluation finished" in ThisItem.Status.Value,
"6 - Closed" in ThisItem.Status.Value
),
Coral,
Transparent
),
Transparent
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @VFPowerAppsUser ,
You can edit a thread instead of posting a duplicate. Link to the other same thread:
Verification of complex column types in Gallery an... - Power Platform Community (microsoft.com)
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.
Hi @VFPowerAppsUser ,
Using the column you posted, try this structure
If(
ThisItem.ERHSCutDownVersion.Value = Blank(),
If(
Or(
"3 - Documentation" in ThisItem.Status.Value,
"4 - PQQ evaluation finished" in ThisItem.Status.Value,
"5 - Bids evaluation finished" in ThisItem.Status.Value,
"6 - Closed" in ThisItem.Status.Value
),
Coral,
Transparent
),
Transparent
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Not sure what happened why this is posted twice. Sorry for this. Can I delete a post? Can't find the relevant button.
User | Count |
---|---|
261 | |
110 | |
90 | |
54 | |
44 |