Hi @Anonymous ,
Could you please share a bit more about the data source used in your app? Is it a SP List or a CDS Entity?
Could you please show more details about the 'Work Flow Status' column in your data source?
1. If the data source you used in your app is a SP List, and the 'Work Flow Status' column is a Choice type column:
Set the DisplayMode property of the two Dropdown boxes to following:
If(
ThisItem.'Work Flow Status'.Value = "AwaitingARApproval",
DisplayMode.Edit,
DisplayMode.View
)
2. If the data source you used in your app is a CDS Entity, and the 'Work Flow Status' column is a Option Set type column:
Set the DisplayMode property of the two Dropdown boxes to following:
If(
ThisItem.'Work Flow Status' = OptionSetName.AwaitingARApproval,
DisplayMode.Edit,
DisplayMode.View
)
Note: The OptionSetName represents the OptionSet, which is related to the 'Work Flow Status' field in your CDS Entity.
Please take a try with above solution, check if the issue is solved.
Best regards,