I am trying to build a Model-drive Application and trying to identify the best way to tackle the below problem.
I have a table with location columns - initial location, customer location and current location. The current location can be one of the following:
- Initial location
- Customer's location
- Empty (meaning it is at customer's location)
Initial Location - can never be empty
Customer Location - can be empty as the item is still at the initial location.
Now, I would like the current location choice to only display three possible values - initial location, customer's location, N/A.
How can I achieve this? Because, the values are going to be dynamic and can only be really shown once the Initial Location and Customer Location has values.
Is there a better way to approach this problem? Like, at the form level instead of trying to achieve this at the Dataverse level?
If I have to do it at the form level, how can I do this?